hash-table-for-each

[procedure] hash-table-for-each hash-table proc

[procedure] hash-table-map hash-table proc

STk, STklos, Gauche, MzScheme: calls proc for each entry in hash-table. proc receives two arguments, a key and a value. Reverses the order of argument from Chicken.

Gauche also has hash-table-fold.

[procedure] hash-table-for-each proc hash-table

Chicken: calls proc for each entry in hash-table. proc receives two arguments, a key and a value. Chicken lacks hash-table-map.

See also make-hash-table.