aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb
blob: 88a34128c98073e344549d75e284573bbcb6e94e (plain) (blame)
1
2
3
4
5
6
7
class Array
  # The human way of thinking about adding stuff to the end of a list is with append.
  alias_method :append,  :push unless [].respond_to?(:append)

  # The human way of thinking about adding stuff to the beginning of a list is with prepend.
  alias_method :prepend, :unshift unless [].respond_to?(:prepend)
end