Add item to the accumulator acc. The exact meaning of adding an
an item depends on the type of the accumulator.
(defmulti add
"Add item to the accumulator acc. The exact meaning of adding an
an item depends on the type of the accumulator."
{:arglists '([acc item])}
(fn [acc item] (type acc)))
Comments top
No comments for add. Log in to add a comment.