[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
7.5.34.3 Table properties
- Scheme Procedure: hash-table-size table
Answer the number of associations in table. This is guaranteed to run in constant time for non-weak tables.
- Scheme Procedure: hash-table-walk table proc
Invoke proc once for each association in table, passing the key and value as arguments.
- Scheme Procedure: hash-table-fold table proc init
Invoke
(proc key value previous)
for each key and value in table, where previous is the result of the previous invocation, using init as the first previous value. Answer the final proc result.
- Scheme Procedure: hash-table->alist table
Answer an alist where each association in table is an association in the result.
This document was generated on April 20, 2013 using texi2html 5.0.