struct CSV2::Builder::Row

Overview

A CSV Row being built.

Defined in:

csv/builder.cr

Instance Method Summary

Instance Method Detail

def <<(value : String) #

Appends the given value to this row.


[View source]
def <<(value : Nil | Bool | Char | Number | Symbol) #

ditto


[View source]
def <<(value) #

ditto


[View source]
def concat(values : Enumerable) #

Appends the given values to this row.


[View source]
def concat(*values) #

ditto


[View source]
def skip_cell #

Appends a comma, thus skipping a cell.


[View source]