VocabularyassocsInputsassoc | an assoc |
quot | a quotation with stack effect ( ... key value -- ... ) |
OutputsNone
Word descriptionApplies a quotation to each entry in the assoc.
ExamplesUSING: assocs kernel math prettyprint ;
H{ { "bananas" 5 } { "apples" 42 } { "pears" 17 } }
0 swap [ nip + ] assoc-each .
64
Definition