Module: Thoran::Array::AllButFirst

Defined in:
lib/Thoran/Array/AllButFirst/all_but_first.rb

Instance Method Summary collapse

Instance Method Details

#all_but_firstObject



18
19
20
21
22
# File 'lib/Thoran/Array/AllButFirst/all_but_first.rb', line 18

def all_but_first
  d = self.dup
  d.first!
  d
end