subwords ( word -- seq )


Vocabulary
words

Inputs
worda word


Outputs
seqa sequence


Word description
Lists all specializations for the given word.

Examples
USING: math.functions prettyprint words ; \ sin subwords .
{ M\ object sin M\ complex sin M\ real sin M\ float sin }


Notes
Outputs f if the word isn't generic.

Definition

GENERIC: subwords ( word -- seq )


Methods