arithmetic functions should be standard
svn: r14831
This commit is contained in:
parent
0e43e6a0dc
commit
6a4c101859
|
@ -9,6 +9,13 @@
|
|||
procedures
|
||||
(all-from beginner: lang/private/beginner-funs procedures)
|
||||
|
||||
("Numbers (relaxed conditions)"
|
||||
|
||||
(+ (number ... -> number) "to add all given numbers")
|
||||
(* (number ... -> number) "to multiply all given numbers")
|
||||
(- (number ... -> number) "to subtract from the first all remaining numbers")
|
||||
(/ (number ... -> number) "to divide the first by all remaining numbers")
|
||||
)
|
||||
("Higher-Order Functions"
|
||||
(map ((X ... -> Z) (listof X) ... -> (listof Z))
|
||||
"to construct a new list by applying a function to each item on one or more existing lists")
|
||||
|
|
Loading…
Reference in New Issue
Block a user