Handbook
Glossary
<dlist> ( -- list )
Factor handbook
»
The language
»
Collections
»
Double-linked lists
Prev:
dlist? ( object -- ? )
Next:
dlist-each ( ... dlist quot: ( ... value -- ... ) -- ... )
Vocabulary
dlists
Inputs
None
Outputs
list
a
dlist
Word description
Creates a new double-linked list.
Definition
USING:
kernel
;
IN:
dlists
:
<dlist>
( -- list )
dlist
new
;
inline