table¶
meth table(Arg₁: list, Arg₂: sequence, ...)TBD
meth table(Arg₁: map, ...)TBD
meth table(Arg₁₁ is Value₁, Arg₂: any, ...)TBD
meth table(Arg₁₁ is Value₁, Arg₂: type, ...)TBD
meth (Arg₁: string::buffer):AppendMethod(Arg₂: table)TBD
type table < sequenceA table is a set of named arrays. The arrays must have the same length.
meth table()TBD
meth (Arg₁: table) :: (Arg₂: string)TBD
meth (Arg₁: table)[Arg₂: integer]TBD
meth (Arg₁: table)[Arg₂: string]TBD
meth (Arg₁: table)[Arg₂: vector::int8]TBD
meth (Arg₁: table):capacityTBD
meth (Arg₁: table):columnsTBD
meth (Arg₁: table):delete(Arg₂: integer)TBD
meth (Arg₁: table):delete(Arg₂: string)TBD
meth (Arg₁: table):insert(Arg₂: integer, Arg₃: list)TBD
meth (Arg₁: table):insert(Arg₂: integer, Arg₃₁ is Value₁, ...)TBD
meth (Arg₁: table):insert(Arg₂₁ is Value₁, Arg₃: any, ...)TBD
meth (Arg₁: table):insert(Arg₂: string, Arg₃: any)TBD
meth (Arg₁: table):lengthTBD
meth (Arg₁: table):offsetTBD
meth (Arg₁: table):permute(Arg₂: permutation)TBD
meth (Arg₁: table):push(Arg₂: list)TBD
meth (Arg₁: table):push(Arg₂₁ is Value₁, ...)TBD
meth (Arg₁: table):put(Arg₂: list)TBD
meth (Arg₁: table):put(Arg₂₁ is Value₁, ...)TBD
meth (Table: table):sort(Compare: function): TableSorts
Tablein-place usingCompareand returns it.meth (Table: table):sort(By: function, Order: function): TableSorts
Tablein-place usingOrder(By(Rowᵢ), By(Rowⱼ))as the comparison function (evaluatingBy(Rowᵢ)only once for eachi).type table::columnTBD
type table::row < sequenceTBD
meth (Arg₁: table::row) :: (Arg₂: string)TBD
meth (Arg₁: table::row)[Arg₂: string]TBD
meth (Buffer: string::buffer):append(Value: table::row)Appends a representation of
ValuetoBuffer.