Class: TrueClass
Class Method Summary collapse
- .maybe? ⇒ Boolean
-
.random ⇒ Object
Yields true 50% of the time, otherwise yields false.
Class Method Details
.maybe? ⇒ Boolean
9 10 11 |
# File 'lib/more_ruby/trueclass.rb', line 9 def self.maybe? random end |
.random ⇒ Object
Yields true 50% of the time, otherwise yields false
5 6 7 |
# File 'lib/more_ruby/trueclass.rb', line 5 def self.random rand(2) % 2 == 0 end |