definer ( defspec -- start end )
Factor handbook » The implementation » Definitions » Definition protocol

Prev:forget ( defspec -- )
Next:definition ( defspec -- seq )


Vocabulary
definitions

Inputs
defspeca definition specifier


Outputs
starta word
enda word or f


Generic word contract
Outputs the parsing words which delimit the definition.

Examples
USING: definitions prettyprint ; IN: scratchpad : foo ( -- ) ; \ foo definer . .
; POSTPONE: :

USING: definitions prettyprint ; IN: scratchpad SYMBOL: foo \ foo definer . .
f POSTPONE: SYMBOL:


Notes
This word is used in the implementation of see.

Definition

GENERIC: definer ( defspec -- start end )


Methods