RScheme provides an implementation of hash tables, both generic and specialized for certain kinds of keys. The hash table facilities are provided by the tables module.
top[0]=>,(use tables) top[1]=>(define t (make-table)) value := t top[2]=>t value := #[<generic-table> @080f_605b]
The <table>
class is the abstract class of collections which
map an explicit set of keys to values.
The only concrete subclasses of <table>
are
subclasses of the class <hash-table>
.
Hash tables are created using the make-table function.