class FalseClass

Public Instance Methods

is_a?(type) click to toggle source
Calls superclass method
# File lib/typed_parameter/boolean.rb, line 14
def is_a?(type)
  return true if type == Boolean

  super(type)
end