module Thoran::Array::AllButFirst

Public Instance Methods

all_but_first() click to toggle source
# File lib/Thoran/Array/AllButFirst/all_but_first.rb, line 18
def all_but_first
  d = self.dup
  d.first!
  d
end