mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 13:49:16 +02:00
Added missing functions and prototypes
This commit is contained in:
parent
21a3c38f38
commit
cba88690df
1 changed files with 42 additions and 0 deletions
|
@ -9,17 +9,59 @@ For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.p
|
||||||
- [`atan`](#atan)
|
- [`atan`](#atan)
|
||||||
- [`cos`](#cos)
|
- [`cos`](#cos)
|
||||||
- [`exp`](#exp)
|
- [`exp`](#exp)
|
||||||
|
- [`finite?`](#finite?)
|
||||||
|
- [`infinite?`](#infinite?)
|
||||||
- [`log`](#log)
|
- [`log`](#log)
|
||||||
|
- [`nan?`](#nan?)
|
||||||
- [`sin`](#sin)
|
- [`sin`](#sin)
|
||||||
- [`sqrt`](#sqrt)
|
- [`sqrt`](#sqrt)
|
||||||
- [`tan`](#tan)
|
- [`tan`](#tan)
|
||||||
|
|
||||||
#acos
|
#acos
|
||||||
|
|
||||||
|
(acos z)
|
||||||
|
|
||||||
#asin
|
#asin
|
||||||
|
|
||||||
|
(asin z)
|
||||||
|
|
||||||
#atan
|
#atan
|
||||||
|
|
||||||
|
(atan z)
|
||||||
|
|
||||||
#cos
|
#cos
|
||||||
|
|
||||||
|
(cos z)
|
||||||
|
|
||||||
#exp
|
#exp
|
||||||
|
|
||||||
|
(exp z)
|
||||||
|
|
||||||
|
#finite?
|
||||||
|
|
||||||
|
(finite? z)
|
||||||
|
|
||||||
|
#infinite?
|
||||||
|
|
||||||
|
(infinite? z)
|
||||||
|
|
||||||
#log
|
#log
|
||||||
|
|
||||||
|
(log z)
|
||||||
|
|
||||||
|
#nan?
|
||||||
|
|
||||||
|
(nan? z)
|
||||||
|
|
||||||
#sin
|
#sin
|
||||||
|
|
||||||
|
(sin z)
|
||||||
|
|
||||||
#sqrt
|
#sqrt
|
||||||
|
|
||||||
|
(sqrt z)
|
||||||
|
|
||||||
#tan
|
#tan
|
||||||
|
|
||||||
|
(tan z)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue