Skip to content

Commit 18f6044

Browse files
committed
update stream -> seq implicit conversion mechanism
1 parent b013dfa commit 18f6044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/byte_streams.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
;; stream-of a -> seq-of a
320320
(and (stream-of? a) (seq-of? b) (= (second a) (second b))
321321
(fn [x _]
322-
(seq x)))
322+
(s/stream->seq x)))
323323

324324
;; seq-of a -> stream-of a
325325
(and (seq-of? a) (stream-of? b) (= (second a) (second b))

0 commit comments

Comments
 (0)