table¶
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):capacity
TBD
meth (Arg₁: table):columns
TBD
meth (Arg₁: table):delete(Arg₂: string)
TBD
meth (Arg₁: table):insert(Arg₂: integer, Arg₃₁ is Value₁, ...)
TBD
meth (Arg₁: table):insert(Arg₂₁ is Value₁, Arg₃: array, ...)
TBD
meth (Arg₁: table):insert(Arg₂: string, Arg₃: array)
TBD
meth (Arg₁: table):length
TBD
meth (Arg₁: table):offset
TBD
meth (Arg₁: table):push(Arg₂₁ is Value₁, ...)
TBD
meth (Arg₁: table):put(Arg₂₁ is Value₁, ...)
TBD
type table::column
TBD
type table::row
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
toBuffer
.