I recently had to analyze all the entries inside a...
# announcements
c
I recently had to analyze all the entries inside a
JarInputStream
but I didn't want to hold that content in memory, so I wanted to generate a
Sequence
out of it and iterate through each entry lazily. My solution looks pretty bad to me, wondering if anyone else ever attempted something like that.