struct

CSV::Builder::Row

Inherits Struct / Value / Object

A CSV Row being built.

Instance methods

<<(value : String) : Nil

Appends the given value to this row.

Source
<<(value : Nil | Bool | Number) : Nil

Appends the given value to this row.

Source
<<(value) : Nil

Appends the given value to this row.

Source
concat(values : Enumerable) : Nil

Appends the given values to this row.

Source
concat(*values) : Nil

Appends the given values to this row.

Source
skip_cell

Appends a comma, thus skipping a cell.

Source