original commit: 6c8c673635b3defc414fe6061b328bdb08476dfb
This commit is contained in:
Matthew Flatt 1998-10-28 17:11:04 +00:00
parent 50ee8d43c4
commit 2fa5365a82

View File

@ -102,8 +102,8 @@
(lambda (l r)
(remove* l r eqv?))))
;; fold : ((A -> B) B (listof A) -> B)
;; fold : ((A1 ... An -> B) B (listof A1) ... (listof An) -> B)
;; fold : ((A B -> B) B (listof A) -> B)
;; fold : ((A1 ... An B -> B) B (listof A1) ... (listof An) -> B)
;; foldl builds "B" from the beginning of the list to the end of the
;; list and foldr builds the "B" from the end of the list to the