| 54 | | "e"d, tango.math.Math.E, |
|---|
| 55 | | "pi"d, tango.math.Math.PI, |
|---|
| 56 | | "nan"d, mdfloat.nan, |
|---|
| 57 | | "infinity"d, mdfloat.infinity, |
|---|
| 58 | | "abs"d, new MDClosure(namespace, &lib.abs, "math.abs"), |
|---|
| 59 | | "sin"d, new MDClosure(namespace, &lib.sin, "math.sin"), |
|---|
| 60 | | "cos"d, new MDClosure(namespace, &lib.cos, "math.cos"), |
|---|
| 61 | | "tan"d, new MDClosure(namespace, &lib.tan, "math.tan"), |
|---|
| 62 | | "asin"d, new MDClosure(namespace, &lib.asin, "math.asin"), |
|---|
| 63 | | "acos"d, new MDClosure(namespace, &lib.acos, "math.acos"), |
|---|
| 64 | | "atan"d, new MDClosure(namespace, &lib.atan, "math.atan"), |
|---|
| 65 | | "atan2"d, new MDClosure(namespace, &lib.atan2, "math.atan2"), |
|---|
| 66 | | "sqrt"d, new MDClosure(namespace, &lib.sqrt, "math.sqrt"), |
|---|
| 67 | | "cbrt"d, new MDClosure(namespace, &lib.cbrt, "math.cbrt"), |
|---|
| 68 | | "pow"d, new MDClosure(namespace, &lib.pow, "math.pow"), |
|---|
| 69 | | "exp"d, new MDClosure(namespace, &lib.exp, "math.exp"), |
|---|
| 70 | | "ln"d, new MDClosure(namespace, &lib.ln, "math.ln"), |
|---|
| 71 | | "log2"d, new MDClosure(namespace, &lib.log2, "math.log2"), |
|---|
| 72 | | "log10"d, new MDClosure(namespace, &lib.log10, "math.log10"), |
|---|
| 73 | | "hypot"d, new MDClosure(namespace, &lib.hypot, "math.hypot"), |
|---|
| 74 | | "lgamma"d, new MDClosure(namespace, &lib.lgamma, "math.lgamma"), |
|---|
| 75 | | "gamma"d, new MDClosure(namespace, &lib.gamma, "math.gamma"), |
|---|
| 76 | | "ceil"d, new MDClosure(namespace, &lib.ceil, "math.ceil"), |
|---|
| 77 | | "floor"d, new MDClosure(namespace, &lib.floor, "math.floor"), |
|---|
| 78 | | "round"d, new MDClosure(namespace, &lib.round, "math.round"), |
|---|
| 79 | | "trunc"d, new MDClosure(namespace, &lib.trunc, "math.trunc"), |
|---|
| 80 | | "isNan"d, new MDClosure(namespace, &lib.isNan, "math.isNan"), |
|---|
| 81 | | "isInf"d, new MDClosure(namespace, &lib.isInf, "math.isInf"), |
|---|
| 82 | | "sign"d, new MDClosure(namespace, &lib.sign, "math.sign"), |
|---|
| 83 | | "rand"d, new MDClosure(namespace, &lib.rand, "math.rand") |
|---|
| | 54 | "e"d, tango.math.Math.E, |
|---|
| | 55 | "pi"d, tango.math.Math.PI, |
|---|
| | 56 | "nan"d, mdfloat.nan, |
|---|
| | 57 | "infinity"d, mdfloat.infinity, |
|---|
| | 58 | "int_min"d, int.min, |
|---|
| | 59 | "int_max"d, int.max, |
|---|
| | 60 | "float_min"d, mdfloat.min, |
|---|
| | 61 | "float_max"d, mdfloat.max, |
|---|
| | 62 | "abs"d, new MDClosure(namespace, &lib.abs, "math.abs"), |
|---|
| | 63 | "sin"d, new MDClosure(namespace, &lib.sin, "math.sin"), |
|---|
| | 64 | "cos"d, new MDClosure(namespace, &lib.cos, "math.cos"), |
|---|
| | 65 | "tan"d, new MDClosure(namespace, &lib.tan, "math.tan"), |
|---|
| | 66 | "asin"d, new MDClosure(namespace, &lib.asin, "math.asin"), |
|---|
| | 67 | "acos"d, new MDClosure(namespace, &lib.acos, "math.acos"), |
|---|
| | 68 | "atan"d, new MDClosure(namespace, &lib.atan, "math.atan"), |
|---|
| | 69 | "atan2"d, new MDClosure(namespace, &lib.atan2, "math.atan2"), |
|---|
| | 70 | "sqrt"d, new MDClosure(namespace, &lib.sqrt, "math.sqrt"), |
|---|
| | 71 | "cbrt"d, new MDClosure(namespace, &lib.cbrt, "math.cbrt"), |
|---|
| | 72 | "pow"d, new MDClosure(namespace, &lib.pow, "math.pow"), |
|---|
| | 73 | "exp"d, new MDClosure(namespace, &lib.exp, "math.exp"), |
|---|
| | 74 | "ln"d, new MDClosure(namespace, &lib.ln, "math.ln"), |
|---|
| | 75 | "log2"d, new MDClosure(namespace, &lib.log2, "math.log2"), |
|---|
| | 76 | "log10"d, new MDClosure(namespace, &lib.log10, "math.log10"), |
|---|
| | 77 | "hypot"d, new MDClosure(namespace, &lib.hypot, "math.hypot"), |
|---|
| | 78 | "lgamma"d, new MDClosure(namespace, &lib.lgamma, "math.lgamma"), |
|---|
| | 79 | "gamma"d, new MDClosure(namespace, &lib.gamma, "math.gamma"), |
|---|
| | 80 | "ceil"d, new MDClosure(namespace, &lib.ceil, "math.ceil"), |
|---|
| | 81 | "floor"d, new MDClosure(namespace, &lib.floor, "math.floor"), |
|---|
| | 82 | "round"d, new MDClosure(namespace, &lib.round, "math.round"), |
|---|
| | 83 | "trunc"d, new MDClosure(namespace, &lib.trunc, "math.trunc"), |
|---|
| | 84 | "isNan"d, new MDClosure(namespace, &lib.isNan, "math.isNan"), |
|---|
| | 85 | "isInf"d, new MDClosure(namespace, &lib.isInf, "math.isInf"), |
|---|
| | 86 | "sign"d, new MDClosure(namespace, &lib.sign, "math.sign"), |
|---|
| | 87 | "rand"d, new MDClosure(namespace, &lib.rand, "math.rand"), |
|---|
| | 88 | "frand"d, new MDClosure(namespace, &lib.frand, "math.frand") |
|---|