Function
Fills a table with the keys and elements supplied.
fill-table! table keys-and-elements => table
<table>.
An instance of <sequence>.
<table>.
common-extensions
common-extensions
Modifies table so that it contains the keys and elements supplied in the sequence keys-and-elements.
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).