chickadee » srfi-69 » hash-table-set!

hash-table-set! HASH-TABLE KEY VALUEprocedure

Set the VALUE for the KEY in the HASH-TABLE.

A setter for hash-table-ref is defined, so

(set! (hash-table-ref HASH-TABLE KEY) VALUE)

is equivalent to

(hash-table-set! HASH-TABLE KEY VALUE)