class Dry::Core::BasicObject

def respond_to?(method_name, include_all = false) # rubocop:disable Style/OptionalBooleanParameter

Other tags:
    See: http://ruby-doc.org/core/Object.html#method-i-respond_to-3F -

Other tags:
    Since: - 0.8.0

Returns:
  • (TrueClass, FalseClass) - the result of the check
def respond_to?(method_name, include_all = false) # rubocop:disable Style/OptionalBooleanParameter
  respond_to_missing?(method_name, include_all)
end