Adds #realsize.
Author:
Tasos “Zapotek” Laskos <[email protected]>
#realsize of self + sum of all #realsizes of all entries in the collection.
Returns #realsize of self + sum of all #realsizes of all entries in the collection.
Returns:
#realsize of self + sum of all #realsizes of all entries in the collection
25 26 27
# File 'lib/arachni/ruby/enumerable.rb', line 25 def realsize reduce( super( false ) ) { |s, e| s += e.realsize } end