Skip to content
Snippets Groups Projects
Commit e2a63a4f authored by wlott's avatar wlott
Browse files

Added Blaine's with-hash-table-iterator.

parent a5f47603
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,8 @@ ...@@ -13,7 +13,8 @@
(in-package 'lisp) (in-package 'lisp)
(export '(hash-table hash-table-p make-hash-table (export '(hash-table hash-table-p make-hash-table
gethash remhash maphash clrhash gethash remhash maphash clrhash
hash-table-count sxhash)) hash-table-count sxhash
with-hash-table-iterator))
;;; Vector subtype codes. ;;; Vector subtype codes.
...@@ -449,7 +450,40 @@ ...@@ -449,7 +450,40 @@
(typecase s-expr (typecase s-expr
(string (sxhash-string s-expr)) (string (sxhash-string s-expr))
(t (array-rank s-expr)))) (t (array-rank s-expr))))
#+nil
(compiled-function (%primitive header-length s-expr))
;; Everything else. ;; Everything else.
(t 42))) (t 42)))
;;;; WITH-HASH-TABLE-ITERATOR
(defmacro with-hash-table-iterator ((function hash-table) &body body)
"WITH-HASH-TABLE-ITERATOR ((function hash-table) &body body)
provides a method of manually looping over the elements of a hash-table.
function is bound to a generator-macro that, withing the scope of the
invocation, returns three values. First, whether there are any more objects
in the hash-table, second, the key, and third, the value."
(let ((counter (gensym))
(pointer (gensym))
(table (gensym))
(size (gensym))
(the-table (gensym)))
`(let* ((,the-table ,hash-table)
(,table (hash-table-table ,the-table))
(,size (hash-table-size ,the-table))
(,counter 0)
(,pointer nil))
(macrolet ((,function ()
`(loop
(when (= ,',counter ,',size) (return))
(let ((bucket (or ,',pointer
(aref ,',table ,',counter))))
(when bucket
(cond ((cdr bucket)
(setf ,',pointer (cdr bucket)))
(t
(setf ,',pointer nil)
(incf ,',counter)))
(return (values t (caar bucket) (cdar bucket)))))
(incf ,',counter))))
,@body))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment