File: sample.rb

package info (click to toggle)
ruby-backports 3.25.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,912 kB
  • sloc: ruby: 11,759; makefile: 6
file content (32 lines) | stat: -rw-r--r-- 1,075 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
unless Array.method_defined? :sample
  require 'backports/tools/arguments'

  class Array
    def sample(n = Backports::Undefined, options = Backports::Undefined)
      if options == Backports::Undefined && n.respond_to?(:to_hash)
        n, options = options, n
      end
      rng = Backports.coerce_to_option(options, :random) unless options == Backports::Undefined
      generator = if rng.respond_to? :rand
        Proc.new do |nb|
          r = Backports::coerce_to_int(rng.rand(nb))
          raise RangeError, "random generator returned #{r} which is not in 0...#{nb}" if r < 0 || r >= nb
          r
        end
      else
        Kernel.method(:rand)
      end
      return self[generator.call(size)] if n == Backports::Undefined
      n = Backports.coerce_to_int(n)
      raise ArgumentError, "negative array size" if n < 0
      n = size if n > size
      result = Array.new(self)
      n.times do |i|
        r = i + generator.call(size - i)
        result[i], result[r] = result[r], result[i]
      end
      result[n..size] = []
      result
    end
  end
end