Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
e2a63a4f
Commit
e2a63a4f
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Added Blaine's with-hash-table-iterator.
parent
a5f47603
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/hash.lisp
+37
-3
37 additions, 3 deletions
code/hash.lisp
with
37 additions
and
3 deletions
code/hash.lisp
+
37
−
3
View file @
e2a63a4f
...
@@ -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
))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment