In Metamodel::DefiniteHOW§
See primary documentation in context for method find method
method find_method(, )
Looks up a method on the base type of a definite type.
In role Metamodel::MROBasedMethodDispatch§
See primary documentation in context for method find method
method find_method(, , :, *)
Given a method name, it returns the method object of that name which is closest in the method resolution order (MRO). If no method can be found, it returns a VM-specific sentinel value (typically a low-level NULL value) that can be tested for with a test for definedness:
for <uppercase uc># OUTPUT:# method `uppercase` not found# FOO
If :no_fallback
is supplied, fallback methods are not considered.