?lookup-method ( class generic -- method/f )
Factor documentation > Factor handbook > The language > Objects > Generic words and methods > Generic word introspection
Prev:lookup-method ( class generic -- method )
Next:effective-method ( generic -- method )


Vocabulary
generic

Inputs and outputs
classa class
generica generic
method/fa method or f


Word description
Looks up a method definition.

Class description
The class of method bodies, which are words with special word properties set.

See also
lookup-method, create-method

Definition
USING: assocs words ;

IN: generic

: ?lookup-method ( class generic -- method/f )
"methods" word-prop at ;