Method: Forall::Input::Some#sample
- Defined in:
- lib/forall/input.rb
#sample(random, count: nil) ⇒ Object
92 93 94 95 96 97 98 |
# File 'lib/forall/input.rb', line 92 def sample(random, count: nil) if count.nil? @block.call(random) else count.times.map { @block.call(random) } end end |