For iterating over the entries.
# File lib/zip/zip.rb, line 1270 def each(&proc) @entrySet.each(&proc) end
Returns an Enumerable containing the entries.
# File lib/zip/zip.rb, line 1172 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 1276 def size @entrySet.size end