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
dlistdlist
quota quotation


Outputs
None

Word description
Iterate a dlist, calling quot on each element.

Definition


: dlist-each ( ... dlist quot: ( ... value -- ... ) -- ... )
[ [ obj>> ] ] dip compose dlist-each-node ; inline