HashTable (HashTable)

Creates an empty HashTable.

Arguments

None

Return values

table
is the new HashTable.

Complexity

Constant

Example

"sl/hashTable" useFile a: HashTable; 1 "1" a.insert 3 "3" a.insert 2 "2" a.insert a [print LF print TRUE] enum
Output:
{ key: 1; value: "1"; } { key: 3; value: "3"; } { key: 2; value: "2"; }