class Array

def except(*keys)


Returns a new arrray with keys removed
def except(*keys)
  self.dup.except!(*keys)
end unless method_defined? :except