Class: Set

Inherits:
Object show all
Defined in:
lib/arachni/ruby/set.rb

Instance Method Summary collapse

Instance Method Details

#shiftObject



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