Handbook
Glossary
lookup-method ( class generic -- method )
Factor handbook
»
The language
»
Objects
»
Generic words and methods
»
Generic word introspection
Prev:
create-method ( class generic -- method )
Next:
?lookup-method ( class generic -- method/f )
Vocabulary
generic
Inputs
class
a
class
generic
a
generic
Outputs
method
a
method
Word description
Looks up a method definition.
Errors
Throws an error if the method does not exist.
See also
?lookup-method
,
create-method
,
M:
Definition
USING:
kernel
;
IN:
generic
:
lookup-method
( class generic -- method )
2dup
?lookup-method
[
2nip
]
[
method-lookup-failed
]
if*
;