Synopsis:
toList x -- provides a list of keys in the hash table x.
For a set, which is implemented as a hash table where only the keys are important, this is a reasonable operation. See also, keys, which does the same thing.
i1 : x = hashTable { a=>1, b=>2} |
i2 : toList x |