13 lines
285 B
Factor
13 lines
285 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 )
|
||
|
|
||
|
GENERIC: forget ( defspec -- )
|