15 lines
336 B
Factor
15 lines
336 B
Factor
! Copyright (C) 2006 Slava Pestov.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
IN: definitions
|
|
USING: kernel sequences namespaces errors ;
|
|
|
|
GENERIC: see ( defspec -- )
|
|
|
|
GENERIC: where* ( defspec -- loc )
|
|
|
|
GENERIC: subdefs ( defspec -- seq )
|
|
|
|
: see-subdefs ( word -- ) subdefs [ see ] each ;
|
|
|
|
GENERIC: forget ( defspec -- )
|