aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/prepend_and_append.rb
blob: 2dd154776537f76af1f8b472f1b063794dc28c3a (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
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