Further cleanups

slava 2006-08-12 20:58:12 +00:00
parent 0d0581fc34
commit b150e155d9
3 changed files with 3 additions and 8 deletions

View File

@ -28,3 +28,6 @@ USING: arrays generic kernel sequences ;
: sum ( seq -- n ) 0 [ + ] reduce ;
: product ( seq -- n ) 1 [ * ] reduce ;
: infimum ( seq -- n ) 1./0. [ min ] reduce ;
: supremum ( seq -- n ) -1./0. [ max ] reduce ;

View File

@ -109,9 +109,6 @@ M: word unxref-word* drop ;
: define-temp ( quot -- word )
gensym [ swap define-compound ] keep ;
: completions ( substring words -- seq )
[ word-name subseq? ] subset-with ;
SYMBOL: bootstrapping?
: word ( -- word ) \ word get-global ;

View File

@ -159,11 +159,6 @@ HELP: define-temp "( quot -- word )"
{ $code "[ 2 2 + . ] define-temp execute" }
} ;
HELP: completions "( string words -- seq )"
{ $values { "string" "a string" } { "words" "a sequence of words" } { "seq" "a sequence of words" } }
{ $description "Outputs a sequence of words whose name contains " { $snippet "string" } "." }
{ $examples "This word is used to implement " { $link apropos } "." } ;
HELP: definer "( word -- definer )"
{ $values { "word" "a word" } { "definer" "a word" } }
{ $description "Outputs the parsing word that defines the given word." }