struct CSV2::Token

Overview

A token in a CSV. It consists of a Kind and a value. The value only makes sense when the kind is Cell.

Defined in:

csv/token.cr

Instance Method Summary

Instance Method Detail

def kind : Kind #

The Kind.


[View source]
def kind=(kind : Kind) #

The Kind.


[View source]
def value : String #

The string value. Only makes sense for a Cell.


[View source]
def value=(value : String) #

The string value. Only makes sense for a Cell.


[View source]