VocabularyassocsInputsOutputsNone
Word descriptionPushes the
value onto a
vector stored at the
key in the
assoc. If the
key does not yet exist, creates a new
vector at that
key and pushes the
value.
ExamplesUSING: prettyprint assocs kernel ;
H{ { "cats" V{ "Mittens" } } } "Mew" "cats" pick push-at .
H{ { "cats" V{ "Mittens" "Mew" } } }
Definition