What would be an ideomatic way in Clojure to get a lazy sequence over a file containing float values serialized from Java? (I’ve toyed with a with-open approach based on line-reading examples but cannot seem to connect the dots to process the stream as floats.)
Thanks.
You are not required to use with-open if you are sure you are going to consume the whole seq.
If you use with-open, double-check that you’re not leaking the seq (or a derived seq) outside of its scope.