hash-table-values

[procedure] hash-table-values hash-table

SRFI-69: Returns a list of values in hash-table. The order of the values is unspecified, and is not guaranteed to match the order of keys in the result of hash-table-keys.

[procedure] hash-table-keys hash-table

SRFI-69: Returns a list of keys in hash-table. The order of the keys is unspecified.

[procedure] hash-table-keys hash-table

[procedure] hash-table-values hash-table

Gauche: See Concept:HashTable.

Note: R6RS has hashtable-keys, which returns a vector of all keys, not a list.