class Arachni::Support::LookUp::HashSet
Lightweight look-up Set
implementation.
It uses stores hashes of items instead of the items themselves.
This leads to decreased memory consumption and faster comparisons during look-ups.
@author Tasos “Zapotek” Laskos <tasos.laskos@arachni-scanner.com>
Public Class Methods
new(*)
click to toggle source
@param (see Base#initialize)
Calls superclass method
Arachni::Support::LookUp::Base::new
# File lib/arachni/support/lookup/hash_set.rb, line 24 def initialize(*) super @collection = Set.new end