>hashtable ( assoc -- hashtable )
Factor documentation > Factor handbook > The language > Collections > Hashtables
Prev:<hashtable> ( n -- hash )
Next:Hashtable keys


Vocabulary
hashtables

Inputs and outputs
assocan assoc
hashtablea hashtable


Word description
Constructs a hashtable from any assoc.

Definition
USING: assocs ;

IN: hashtables

: >hashtable ( assoc -- hashtable ) H{ } assoc-clone-like ;