Skip to content

Instantly share code, notes, and snippets.

@qxjit
Created March 6, 2012 18:56
Show Gist options
  • Save qxjit/1988179 to your computer and use it in GitHub Desktop.
Save qxjit/1988179 to your computer and use it in GitHub Desktop.
Array#>>
class Array
alias_method :>>, :delete
end
a = []
a << 1
a << 2
a << 3
a >> 2
puts a.inspect
# => [1, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment