diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-10 12:20:03 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-10 12:22:54 -0800 |
commit | 497cd7dee0ca67644d92eeefac277e89361d3053 (patch) | |
tree | 3ebf0bbf69c1f900a067432694bc91490086f3aa /hash.c | |
parent | 64eb78436c46c1c6eecba1093a9072ff829209c4 (diff) | |
download | txr-497cd7dee0ca67644d92eeefac277e89361d3053.tar.gz txr-497cd7dee0ca67644d92eeefac277e89361d3053.tar.bz2 txr-497cd7dee0ca67644d92eeefac277e89361d3053.zip |
* eval.c (eval_init): New functions added as intrinsics.
* hash.c (hash_eql, hash_equal): New external functions.
* hash.h (hash_eql, hash_equal): Declared.
* txr.1: Sections added.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -408,6 +408,16 @@ val maphash(val fun, val hash) return nil; } +val hash_eql(val obj) +{ + return num(eql_hash(obj) % NUM_MAX); +} + +val hash_equal(val obj) +{ + return num(equal_hash(obj) % NUM_MAX); +} + /* * Called from garbage collector. Hash module must process all weak tables * that were visited during the marking phase, maintained in the list |