


![[top]](top.gif)
select(HashTable,Function) -- select pairs from a hash table
Synopsis:
select(v,f) -- select pairs of the hash table v
that yield true when the function f is applied to
the value.
The hash table should be immutable: to scan the values in a mutable hash
table, use scan(values x, f).



![[top]](top.gif)