class Dry::Core::BasicObject

def self.const_missing(name)

Other tags:
    See: https://ruby-doc.org/core/Module.html#method-i-const_missing -

Other tags:
    Api: - private

Other tags:
    Since: - 0.8.0

Raises:
  • (NameError) - if the constant cannot be found

Returns:
  • (Object, Module) - the constant

Parameters:
  • name (Symbol) -- the constant name
def self.const_missing(name)
  ::Object.const_get(name)
end