Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Last active August 29, 2015 14:17
Show Gist options
  • Save a2ikm/b9e391744a30bef2c228 to your computer and use it in GitHub Desktop.
Save a2ikm/b9e391744a30bef2c228 to your computer and use it in GitHub Desktop.
Array#rstrip
class Array
def rstrip
index =
if block_given?
rindex { |item| !yield(item) }
else
rindex { |item| !item.nil? }
end
if index
take(index)
else
dup
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment