In Java I can do this
list.stream().peek(System.out::println).filter(i -> i >= 0).findFirst();
This will find the first positive number in a list, printing all numbers since the begining until the first positive number.
I need something similar in Clojure, but I can't find a equivalent for peek. peek does something different in Clojure. I need to create a side effect without consuming the sequence, intermediary. Just as elements pass through, they should be passed to a function. I could implement it myself, but I don't want to reinvent something existing. Seems like basic functionality, I was unable to find the right function to call).
If you study the Clojure CheatSheet, you can find the function
split-with
which does pretty much what you want:If you need something in the future and can't find a built-in function that works, you can always write simple loops (or "recursion") using
loop/recur
.Please also see this list of documentation.