class FalseClass
Public Instance Methods
parse_bool()
click to toggle source
Returns the parsed value of this object.
@return [false] @false@.
# File lib/boolean.rb, line 40 def parse_bool() false end
to_b()
click to toggle source
@see parse_bool
# File lib/boolean.rb, line 43 def to_b() false end
to_bool()
click to toggle source
Returns the typecasted value of this object.
@return [false] @false@.
# File lib/boolean.rb, line 35 def to_bool() false end