Apply f to the ZipInputStream for every entry in the archive.
Apply f to the ZipInputStream for every entry in the archive.
Attributes
f
The function to apply to the ZipInputStream. Can fail if it returns a lazy value,
like Iterator, as the the entry will have been closed before the lazy value is evaluated.
Apply f on each ZipEntry in the archive, closing the entry after f has been applied.
Apply f on each ZipEntry in the archive, closing the entry after f has been applied.
Attributes
f
The function to apply to each ZipEntry. Can fail if it returns a lazy value,
like Iterator, as the entry will have been closed before the lazy value is evaluated.