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 < sequence

A 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):capacity

TBD

meth (Arg₁: table):columns

TBD

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):length

TBD

meth (Arg₁: table):offset

TBD

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): Table

Sorts Table in-place using Compare and returns it.

meth (Table: table):sort(By: function, Order: function): Table

Sorts Table in-place using Order(By(Rowᵢ), By(Rowⱼ)) as the comparison function (evaluating By(Rowᵢ) only once for each i).

type table::column

TBD

type table::row < sequence

TBD

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 Value to Buffer.