diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-01-20 01:03:51 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-01-20 01:03:51 -0800 |
commit | 9a2f9df335393284f6af2d95dbd65cb606792ad8 (patch) | |
tree | 3b5879d84420fd384eb788c576658c3dd5a4ef71 /hash.c | |
parent | 54d0988406a70c7849a10d9ada1dbdff761adf8f (diff) | |
download | txr-9a2f9df335393284f6af2d95dbd65cb606792ad8.tar.gz txr-9a2f9df335393284f6af2d95dbd65cb606792ad8.tar.bz2 txr-9a2f9df335393284f6af2d95dbd65cb606792ad8.zip |
New function: hash-keys-of.
* hash.c (hash_keys_of): New function.
(hash_init): Register hash-keys-of intrinsic
* hash.h (hash_keys_of): Declared.
* txr.1: Documented.
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -1808,6 +1808,26 @@ val hash_revget(val hash, val value, val test, val keyfun) return nil; } +val hash_keys_of(val hash, val value, val test, val keyfun) +{ + val self = lit("hash-keys-of"); + val cell; + struct hash_iter hi; + list_collect_decl(out, ptail); + + hash_iter_init(&hi, hash, self); + + test = default_arg(test, eql_f); + keyfun = default_arg(keyfun, identity_f); + + while ((cell = hash_iter_next(&hi)) != nil) { + if (funcall2(test, value, funcall1(keyfun, us_cdr(cell)))) + ptail = list_collect(ptail, us_car(cell)); + } + + return out; +} + val hash_invert(val hash, val joinfun, val unitfun, struct args *hashv_args) { val self = lit("hash-invert"); @@ -1916,6 +1936,7 @@ void hash_init(void) reg_fun(intern(lit("hash-update-1"), user_package), func_n4o(hash_update_1, 3)); reg_fun(intern(lit("hash-revget"), user_package), func_n4o(hash_revget, 2)); + reg_fun(intern(lit("hash-keys-of"), user_package), func_n4o(hash_keys_of, 2)); reg_fun(intern(lit("hash-invert"), user_package), func_n3ov(hash_invert, 1)); reg_fun(intern(lit("hash-begin"), user_package), func_n1(hash_begin)); reg_fun(intern(lit("hash-next"), user_package), func_n1(hash_next)); |