mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +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)
|
||||
- [`cos`](#cos)
|
||||
- [`exp`](#exp)
|
||||
- [`finite?`](#finite?)
|
||||
- [`infinite?`](#infinite?)
|
||||
- [`log`](#log)
|
||||
- [`nan?`](#nan?)
|
||||
- [`sin`](#sin)
|
||||
- [`sqrt`](#sqrt)
|
||||
- [`tan`](#tan)
|
||||
|
||||
#acos
|
||||
|
||||
(acos z)
|
||||
|
||||
#asin
|
||||
|
||||
(asin z)
|
||||
|
||||
#atan
|
||||
|
||||
(atan z)
|
||||
|
||||
#cos
|
||||
|
||||
(cos z)
|
||||
|
||||
#exp
|
||||
|
||||
(exp z)
|
||||
|
||||
#finite?
|
||||
|
||||
(finite? z)
|
||||
|
||||
#infinite?
|
||||
|
||||
(infinite? z)
|
||||
|
||||
#log
|
||||
|
||||
(log z)
|
||||
|
||||
#nan?
|
||||
|
||||
(nan? z)
|
||||
|
||||
#sin
|
||||
|
||||
(sin z)
|
||||
|
||||
#sqrt
|
||||
|
||||
(sqrt z)
|
||||
|
||||
#tan
|
||||
|
||||
(tan z)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue