table

Table constructor.

let my-table = table("red"=>"stop", "green"=>"go");
let my-table = table(<string-table>, "red"=>"stop", "green"=>"go");

Exported from

Macro call

table( (table-class), (key) => (element), ... )

Arguments

table-classA subclass of <explicit-key-collection>.  Optional.  Defaults to <table>.
keyAn instance of <object>.  The key for element.
elementAn instance of <object>.

Values

tableAn instance of table-class containing keys and elements.
The table-extensions module.
The class of all collections that are not sequences.
The class of tables (also known as hash tables).
The class of all Dylan objects.