]> gitweb.factorcode.org Git - factor.git/commitdiff
Removing duplicate entries in lists-docs
authorJames Cash <james.nvc@gmail.com>
Wed, 4 Jun 2008 00:11:27 +0000 (20:11 -0400)
committerJames Cash <james.nvc@gmail.com>
Wed, 4 Jun 2008 00:11:27 +0000 (20:11 -0400)
extra/lists/lists-docs.factor

index 1e5a5fd396885624d5b45476eed40dca6f23d0ed..4fae52f5b4c0d1024faea77105beab10fd90a56e 100644 (file)
@@ -58,18 +58,6 @@ HELP: uncons
 { $values { "cons" "a cons object" } { "car" "the head of the list" } { "cdr" "the tail of the list" } }
 { $description "Put the head and tail of the list on the stack." } ;
 
-HELP: leach
-{ $values { "list" "a cons object" } { "quot" "a quotation with stack effect ( obj -- )" } }
-{ $description "Call the quotation for each item in the list." } ;
-
-HELP: lreduce
-{ $values { "list" "a cons object" } { "identity" "an object" } { "quot" "a quotation with stack effect ( prev elt -- next )" } { "result" "the final result" } }
-{ $description "Combines successive elements of the list using a binary operation, and outputs the final result." } ;
-
-HELP: uncons
-{ $values { "cons" "a cons object" } { "car" "the head of the list" } { "cdr" "the tail of the list" } }
-{ $description "Put the head and tail of the list on the stack." } ;
-
 { leach lreduce lmap } related-words
 
 HELP: leach