Go to the first, previous, next, last section, table of contents.


makeHash

Function: makeHash
file: job.t
package: muf
status: alpha

The makeHash function creates and returns an instance of Class Hash, a hashed btree.

Since these objects store their properties in a hashed btree, they are often used as hashtables:

Stack:
makeHash --> datebook
Stack:
"555-1212 -- cute" --> datebook["kim"]
Stack:
"555-2121 -- never again" --> datebook["pat"]
Stack:
datebook["kim"]
Stack: "555-1212 -- cute"

See section makeIndex. See section low-level MOS functions.


Go to the first, previous, next, last section, table of contents.