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() ~ IntRefReturn
| Type | Description |
|---|---|
| IntRef | 'false' value holder |
Get #
Gets value by name
method : public : Get(name:String) ~ CompareParameters
| Name | Type | Description |
|---|---|---|
| name | String | column name |
Return
| Type | Description |
|---|---|
| Compare | value |
Get #
Gets value by index
method : public : Get(index:Int) ~ CompareParameters
| Name | Type | Description |
|---|---|---|
| index | Int | column index |
Return
| Type | Description |
|---|---|
| Compare | value |
Set #
Sets value by name
method : public : Set(name:String, value:Compare) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| name | String | column name |
| value | Compare | value |
Return
| Type | Description |
|---|---|
| Bool | ture of successful, false otherwise |
Set #
Sets value by index
method : public : Set(index:Int, value:Compare) ~ BoolParameters
| Name | Type | Description |
|---|---|---|
| index | Int | column index |
| value | Compare | value |
Return
| Type | Description |
|---|---|
| Bool | ture of successful, false otherwise |
Size #
Gets the number of columns
method : public : Size() ~ IntReturn
| Type | Description |
|---|---|
| Int | number of columns |