Skip to content

struct CSV::Builder::Row
inherits Struct

A CSV Row being built.

Methods

#<<(value : String)

Appends the given value to this row.

View source

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

Appends the given value to this row.

View source

#<<(value)

Appends the given value to this row.

View source

#concat(values : Enumerable)

Appends the given values to this row.

View source

#concat(*values)

Appends the given values to this row.

View source

#skip_cell

Appends a comma, thus skipping a cell.

View source