The documentation for Array#sample says it can take an rng:

If rng is given, it will be used as the random number generator.

How can a range function as a random number generator, or why is such thing useful?

Also the hash form suggests there are other options, but I can't find anything about them. Trying out [1,2,3,4,5].sample(3) behaves just like [1,2,3,4,5].sample(3, random: 1..2).

link|improve this question

78% accept rate
I'd guess you can use the random number generator can be used as an additional source for random numbers (like a hardware device) that may provide a better entropy than Ruby's built-in RNG. – Koraktor Dec 19 '11 at 21:48
"A random number generator (RNG) is a computational or physical device designed to generate a sequence of numbers or symbols that lack any pattern, i.e. appear random." en.wikipedia.org/wiki/Random_number_generation – Michael Kohl Dec 19 '11 at 22:13
feedback

1 Answer

up vote 2 down vote accepted

I'm not clear on why you think it's a range.

The argument should be a random number generator. It defaults to the "stock" Ruby implementation.

It can be replaced with an arbitrary RNG, like one that isn't at all random:

class NotAtAllRandom
  def self.rand x=0  
    0
  end  
end  

> (1..10000).sample(3, random: NotAtAllRandom)
=> [1, 2, 3]
> (1..10000).sample(3, random: NotAtAllRandom)
=> [1, 2, 3]
link|improve this answer
Misread rng for range instead of random number generator, tried it out, didn't make sense. You cleared it up, thanks. – steenslag Dec 19 '11 at 22:19
@steenslag I guess it does kind of look like range--duh; didn't even see that. – Dave Newton Dec 19 '11 at 22:20
"I'm not clear on why you think it's a range.": 'range'.tr('aeiou', '') == 'rng'. – mu is too short Dec 19 '11 at 22:33
@muistooshort My interpreter was broken. – Dave Newton Dec 19 '11 at 22:37
You've probably been writing much Java where they spell things out :) – mu is too short Dec 19 '11 at 22:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.