(defn stream-drop "Return a stream containing all but the first n elements of stream." [n stream] (if (zero? n) stream (let [[_ s] (stream-next stream)] (recur (dec n) s))))
Comments top
No comments for stream-drop. Log in to add a comment.