Combine the values of the accumulators acc1 and acc2 into a
single accumulator of the same type.
(defmulti combine
"Combine the values of the accumulators acc1 and acc2 into a
single accumulator of the same type."
{:arglists '([& accs])}
(fn [& accs] (type (first accs))))
Comments top
No comments for combine. Log in to add a comment.