Associative mapping conversions
Factor documentation > Factor handbook > The language > Collections > Associative mapping operations
Prev:Set-theoretic operations on assocs


Converting to other assocs:
assoc-clone-like ( assoc exemplar -- newassoc )


Combining a sequence of assocs into a single assoc:
assoc-combine ( seq -- union )


Creating an assoc from key/value sequences:
zip ( keys values -- alist )


Creating key/value sequences from an assoc:
unzip ( assoc -- keys values )