class

Row

class Row : Obj

Row models a row of a relational table. See pod-doc.

methods toStr

Dump the cells separated by a comma

col

Get a column by name

set

Set a column value

get

Get column value

trap

Trap is used to get or set a column by name

cols

Get a read-only list of the columns

col Col? col(Str name, Bool checked)

Get a column by name. If not found and checked is true then throw ArgErr, otherwise return null.

cols Col[] cols()

Get a read-only list of the columns.

get @Operator
Obj? get(Col col)

Get column value. See type mapping.

set @Operator
Void set(Col col, Obj? val)

Set a column value. See type mapping.

toStr virtual Str toStr()

Dump the cells separated by a comma.

trap virtual Obj? trap(Str name, Obj?[]? args)

Trap is used to get or set a column by name.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST