mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Clean up index section
This commit is contained in:
parent
11ec4d7508
commit
4a88174d85
1 changed files with 33 additions and 24 deletions
|
@ -11,30 +11,39 @@ Hash tables are widely recognised as a fundamental data structure for a wide var
|
|||
|
||||
See the [SRFI document](http://srfi.schemers.org/srfi-69/srfi-69.html) for more information.
|
||||
|
||||
- [`make-hash-table`](#make-hash-table)
|
||||
- [`hash-table?`](#hash-table)
|
||||
- [`alist->hash-table`](#alist-hash-table)
|
||||
- [`hash-table-equivalence-function`](#hash-table-equivalence-function)
|
||||
- [`hash-table-hash-function`](#hash-table-hash-function)
|
||||
- [`hash-table-ref`](#hash-table-ref)
|
||||
- [`hash-table-ref/default`](#hash-table-refdefault)
|
||||
- [`hash-table-set!`](#hash-table-set)
|
||||
- [`hash-table-delete!`](#hash-table-delete)
|
||||
- [`hash-table-exists?`](#hash-table-exists)
|
||||
- [`hash-table-update!`](#hash-table-update)
|
||||
- [`hash-table-update!/default`](#hash-table-updatedefault)
|
||||
- [`hash-table-size`](#hash-table-size)
|
||||
- [`hash-table-keys`](#hash-table-keys)
|
||||
- [`hash-table-values`](#hash-table-values)
|
||||
- [`hash-table-walk`](#hash-table-walk)
|
||||
- [`hash-table-fold`](#hash-table-fold)
|
||||
- [`hash-table->alist`](#hash-table-alist)
|
||||
- [`hash-table-copy`](#hash-table-copy)
|
||||
- [`hash-table-merge!`](#hash-table-merge)
|
||||
- [`hash`](#hash)
|
||||
- [`string-hash`](#string-hash)
|
||||
- [`string-ci-hash`](#string-ci-hash)
|
||||
- [`hash-by-identity`](#hash-by-identity)
|
||||
## Type constructors and predicate
|
||||
[`make-hash-table`](#make-hash-table)
|
||||
[`hash-table?`](#hash-table)
|
||||
[`alist->hash-table`](#alist-hash-table)
|
||||
|
||||
## Reflective queries
|
||||
[`hash-table-equivalence-function`](#hash-table-equivalence-function)
|
||||
[`hash-table-hash-function`](#hash-table-hash-function)
|
||||
|
||||
## Dealing with single elements
|
||||
[`hash-table-ref`](#hash-table-ref)
|
||||
[`hash-table-ref/default`](#hash-table-refdefault)
|
||||
[`hash-table-set!`](#hash-table-set)
|
||||
[`hash-table-delete!`](#hash-table-delete)
|
||||
[`hash-table-exists?`](#hash-table-exists)
|
||||
[`hash-table-update!`](#hash-table-update)
|
||||
[`hash-table-update!/default`](#hash-table-updatedefault)
|
||||
|
||||
## Dealing with the whole contents
|
||||
[`hash-table-size`](#hash-table-size)
|
||||
[`hash-table-keys`](#hash-table-keys)
|
||||
[`hash-table-values`](#hash-table-values)
|
||||
[`hash-table-walk`](#hash-table-walk)
|
||||
[`hash-table-fold`](#hash-table-fold)
|
||||
[`hash-table->alist`](#hash-table-alist)
|
||||
[`hash-table-copy`](#hash-table-copy)
|
||||
[`hash-table-merge!`](#hash-table-merge)
|
||||
|
||||
## Hashing
|
||||
[`hash`](#hash)
|
||||
[`string-hash`](#string-hash)
|
||||
[`string-ci-hash`](#string-ci-hash)
|
||||
[`hash-by-identity`](#hash-by-identity)
|
||||
|
||||
# make-hash-table
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue