class TrueClass

Public Instance Methods

parse_bool() click to toggle source

Returns the parsed value of this object.

@return [true] @true@.

# File lib/boolean.rb, line 23
def parse_bool() true end
to_b() click to toggle source

@see parse_bool

# File lib/boolean.rb, line 26
def to_b() true end
to_bool() click to toggle source

Returns the typecasted value of this object.

@return [true] @true@.

# File lib/boolean.rb, line 18
def to_bool() true end