aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array/random_access.rb
blob: b7ee00742acaa2ed0e7c89ae00869409331f1e22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Array #:nodoc:
      module RandomAccess
        # Return a random element from the array.
        def rand
          self[Kernel.rand(length)]
        end
      end
    end
  end
end