forked from russellallen/self
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranscendentalTemplates.self
45 lines (30 loc) · 1.04 KB
/
transcendentalTemplates.self
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
'Sun-$Revision: 30.8 $'
"Copyright 1992-2012 AUTHORS.
See the LICENSE file for license information."
primitiveMaker reader copy staticLinking create: 'transcendental' From: '
-- Copyright 1992-2012 AUTHORS.
-- See the LICENSE file for license information.
glueLibraryName: transcendental_glue.o
macroName: transcendental
traits: traits number
visibility: publicSlot
float sin = float call sin
float cos = float call cos
float tan = float call tan
float arcSin = float call asin
float arcCos = float call acos
float arcTan = float call atan
float arcTan: float = float call atan2
float sinh = float call sinh
float cosh = float call cosh
float tanh = float call tanh
float arcSinh = float call asinh
float arcCosh = float call acosh
float arcTanh = float call atanh
float squareRoot = float call sqrt
float raisedTo: float = float call pow
float exp = float call exp
float naturalLog = float call log
float base10Log = float call log10
float base2Log = float call log2
'