<dlist> ( -- list )
Factor documentation > Factor handbook > The language > Collections > Double-linked lists
Prev:dlist? ( object -- ? )
Next:dlist-each ( ... dlist quot: ( ... value -- ... ) -- ... )


Vocabulary
dlists

Inputs and outputs
lista dlist


Word description
Creates a new double-linked list.

Definition
USING: kernel ;

IN: dlists

: <dlist> ( -- list ) dlist new ; inline