Class: Set
Instance Method Summary collapse
Instance Method Details
#shift ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/arachni/ruby/set.rb', line 20 def shift return if @hash.empty? key = @hash.first.first @hash.delete key key end |