Returns the element of coll referred to by key. Each type of collection
can have specific restrictions on the possible keys.
(defmulti get
"Returns the element of coll referred to by key. Each type of collection
can have specific restrictions on the possible keys."
{:arglists '([coll key] [coll key not-found])}
(fn [coll & args] (type coll)))
Comments top
No comments for get. Log in to add a comment.