e48985ef1aac

Merge.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Sun, 05 May 2019 11:41:36 -0400
parents 5e42deadf773 (current diff) 28724d30efef (diff)
children 1afaa33589b2
branches/tags (none)
files

Changes

--- a/package.lisp	Sun May 05 11:40:57 2019 -0400
+++ b/package.lisp	Sun May 05 11:41:36 2019 -0400
@@ -233,7 +233,13 @@
   (:documentation "Utilities for operating on hash tables.")
   (:export
     :hash-table-contents
-    :mutate-hash-values))
+    :mutate-hash-values
+    :remhash-if
+    :remhash-if-not
+    :remhash-if-key
+    :remhash-if-not-key
+    :remhash-if-value
+    :remhash-if-not-value))
 
 
 (defpackage :losh.random
--- a/src/hash-tables.lisp	Sun May 05 11:40:57 2019 -0400
+++ b/src/hash-tables.lisp	Sun May 05 11:41:36 2019 -0400
@@ -15,3 +15,64 @@
   "Return a fresh list of `(key value)` elements of `hash-table`."
   (gathering (maphash (compose #'gather #'list) hash-table)))
 
+(defun remhash-if (test hash-table)
+  "Remove elements which satisfy `(test key value)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (when (funcall test k v)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)
+
+(defun remhash-if-not (test hash-table)
+  "Remove elements which don't satisfy `(test key value)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (unless (funcall test k v)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)
+
+(defun remhash-if-key (test hash-table)
+  "Remove elements which satisfy `(test key)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (declare (ignore v))
+             (when (funcall test k)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)
+
+(defun remhash-if-not-key (test hash-table)
+  "Remove elements which satisfy don't `(test key)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (declare (ignore v))
+             (unless (funcall test k)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)
+
+(defun remhash-if-value (test hash-table)
+  "Remove elements which satisfy `(test value)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (when (funcall test v)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)
+
+(defun remhash-if-not-value (test hash-table)
+  "Remove elements which satisfy don't `(test value)` from `hash-table`.
+
+  Returns the hash table."
+  (maphash (lambda (k v)
+             (unless (funcall test v)
+               (remhash k hash-table)))
+           hash-table)
+  hash-table)