Handbook
Glossary
dlist-each ( ... dlist quot: ( ... value -- ... ) -- ... )
Factor handbook
»
The language
»
Collections
»
Double-linked lists
Prev:
<dlist> ( -- list )
Next:
dlist-find ( ... dlist quot: ( ... value -- ... ? ) -- ... obj/f ? )
Vocabulary
dlists
Inputs
dlist
dlist
quot
a
quotation
Outputs
None
Word description
Iterate a
dlist
, calling quot on each element.
Definition
USING:
accessors
kernel
;
IN:
dlists
:
dlist-each
( ... dlist quot: ( ... value -- ... ) -- ... )
[
[
obj>>
]
]
dip
compose
dlist-each-node
;
inline