Return a new stream that contrains the elements of stream
that satisfy the predicate p.
(defmulti stream-filter
"Return a new stream that contrains the elements of stream
that satisfy the predicate p."
{:arglists '([p stream])}
(fn [p stream] (type stream)))
Comments top
No comments for stream-filter. Log in to add a comment.