math-method ( word class1 class2 -- quot )


Vocabulary
generic.math

Inputs
worda generic
class1a class
class2a class


Outputs
quota quotation


Word description
Generates a definition for word when the two inputs are instances of class1 and class2, respectively.

Examples
USING: generic.math math prettyprint ; \ + fixnum float math-method .
[ { fixnum float } declare [ >float ] dip M\ float + ]


Definition