fill-table!

Fills a table with the keys and elements supplied.

This function interprets keys-and-elements as key-element pairs, that is, it treats the first element as a table key, the second as the table element corresponding to that key, and so on.  The keys and elements should be suitable for table.

Because keys-and-elements is treated as a sequence of paired key-element values, it should contain an even number of elements; if it contains an odd number of elements, fill-table! ignores the last element (which would have been treated as a key).

Exported from

Arguments

tableAn instance of <table>.
keys-and-elementsAn instance of <sequence>, containing alternate keys and elements.

Values

tableAn instance of <table>.
Fills a table with the keys and elements supplied.
The common-dylan module.
Miscellaneous extensions to the Dylan language.
The class of tables (also known as hash tables).
The class of collections whose keys are consecutive integers starting from zero.