Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Created April 6, 2011 20:41
Show Gist options
  • Save kwilczynski/906480 to your computer and use it in GitHub Desktop.
Save kwilczynski/906480 to your computer and use it in GitHub Desktop.
Array#get
class Array
def get(*indices)
indices.empty? ? self : indices.collect { |i| self[i] }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment