Janet 1.27.0-01aab66 Documentation
(Other Versions: 1.26.0 1.25.1 1.24.0 1.23.0 1.22.0 1.21.0 1.20.0 1.19.0 1.18.1 1.17.1 1.16.1 1.15.0 1.13.1 1.12.2 1.11.1 1.10.1 1.9.1 1.8.1 1.7.0 1.6.0 1.5.1 1.5.0 1.4.0 1.3.1 )

Table Module

Index

table/clear table/clone table/getproto table/new table/proto-flatten table/rawget table/setproto table/to-struct

cfunction (table/clear tab)
Remove all key-value pairs in a table and return the modified table `tab`.
Community Examples / source
cfunction (table/clone tab)
Create a copy of a table. Updates to the new table will not change the old table, and vice versa.
Community Examples / source
cfunction (table/getproto tab)
Get the prototype table of a table. Returns nil if the table has no prototype, otherwise returns the prototype.
Community Examples / source
cfunction (table/new capacity)
Creates a new empty table with pre-allocated memory for `capacity` entries. This means that if one knows the number of entries going into a table on creation, extra memory allocation can be avoided. Returns the new table.
Community Examples / source
cfunction (table/proto-flatten tab)
Create a new table that is the result of merging all prototypes into a new table.
Community Examples / source
cfunction (table/rawget tab key)
Gets a value from a table `tab` without looking at the prototype table. If `tab` does not contain the key directly, the function will return nil without checking the prototype. Returns the value in the table.
Community Examples / source
cfunction (table/setproto tab proto)
Set the prototype of a table. Returns the original table `tab`.
Community Examples / source
cfunction (table/to-struct tab)
Convert a table to a struct. Returns a new struct. This function does not take into account prototype tables.
Community Examples / source