For iterating over the entries.
[Source]
# File lib/zip/zip.rb, line 1296 def eacheach(&proc) @entrySet.each(&proc) end
Returns an Enumerable containing the entries.
# File lib/zip/zip.rb, line 1198 def entries @entrySet.entries end
Returns the number of entries in the central directory (and consequently in the zip archive).
# File lib/zip/zip.rb, line 1302 def size @entrySet.size end
[Validate]