integer-sqrt and make-rectangular added

svn: r13591
This commit is contained in:
Matthias Felleisen 2009-02-15 01:34:54 +00:00
parent d43f58df4c
commit f302dbfb91

View File

@ -47,7 +47,9 @@
(sqr (number -> number)
"to compute the square of a number")
(sqrt (number -> number)
"to compute the square root of a number")
"to compute the square root of a number")
(integer-sqrt (number -> integer)
"to compute the integer (exact or inexact) square root of a number")
(expt (number number -> number)
"to compute the power of the first to the second number")
(abs (real -> real)