2019-10-18 09:05:08 -04:00
|
|
|
! Copyright (C) 2006, 2007 Slava Pestov.
|
2006-08-02 15:17:13 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
|
IN: definitions
|
2006-08-25 00:02:30 -04:00
|
|
|
USING: kernel sequences namespaces errors ;
|
2006-08-02 15:17:13 -04:00
|
|
|
|
|
|
|
|
GENERIC: see ( defspec -- )
|
|
|
|
|
|
2019-10-18 09:05:04 -04:00
|
|
|
GENERIC: where ( defspec -- loc )
|
2006-08-02 15:17:13 -04:00
|
|
|
|
|
|
|
|
GENERIC: forget ( defspec -- )
|
2019-10-18 09:05:04 -04:00
|
|
|
|
2019-10-18 09:05:08 -04:00
|
|
|
M: f forget drop ;
|
|
|
|
|
|
2019-10-18 09:05:04 -04:00
|
|
|
GENERIC: synopsis* ( defspec -- )
|
2019-10-18 09:05:08 -04:00
|
|
|
|
|
|
|
|
GENERIC: definer ( word -- start end )
|
|
|
|
|
|
|
|
|
|
GENERIC: definition ( spec -- quot/f )
|