v2026.5.3
All Bundles
Bundle In-memory object query engine. Table stores typed records and supports filtering, aggregation (sum, average), and CSV/filesystem import. Finder provides filesystem search. Compile with -lib query.

Row

Row in table

Operations

False # function

Helper for setting 'false' column value

function : False() ~ IntRef

Return

TypeDescription
IntRef'false' value holder

Get #

Gets value by name

method : public : Get(name:String) ~ Compare

Parameters

NameTypeDescription
nameStringcolumn name

Return

TypeDescription
Comparevalue

Get #

Gets value by index

method : public : Get(index:Int) ~ Compare

Parameters

NameTypeDescription
indexIntcolumn index

Return

TypeDescription
Comparevalue

Set #

Sets value by name

method : public : Set(name:String, value:Compare) ~ Bool

Parameters

NameTypeDescription
nameStringcolumn name
valueComparevalue

Return

TypeDescription
Boolture of successful, false otherwise

Set #

Sets value by index

method : public : Set(index:Int, value:Compare) ~ Bool

Parameters

NameTypeDescription
indexIntcolumn index
valueComparevalue

Return

TypeDescription
Boolture of successful, false otherwise

Size #

Gets the number of columns

method : public : Size() ~ Int

Return

TypeDescription
Intnumber of columns

ToString #

String representation of row1

method : public : ToString() ~ String

Return

TypeDescription
Stringrow1 as string

True # function

Helper for setting 'true' column value

function : True() ~ IntRef

Return

TypeDescription
IntRef'true' value holder