November 2010
Intermediate to advanced
504 pages
12h 45m
English
In the same way that arrays are sort of like lists, hash tables are sort of like alists, except that they also allow you to access arbitrary elements more quickly.
In fact, hash tables are so efficient that they can, at times, seem like magic. Think of the Babel fish in the Hitchhiker’s Guide to the Galaxy trilogy—something so impossibly useful that it really has no business existing in the first place. That’s why almost all modern languages now offer the hash table datatype.

Create a new hash table with the make-hash-table command:
> (make-hash-table)
#S(HASH-TABLE ...)Like alists, hash tables store items using ...
Read now
Unlock full access