15 lines
320 B
Factor
15 lines
320 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 -- )
|
|
|
|
GENERIC: synopsis* ( defspec -- )
|