Numerical value trait
type | A | The type for which the number operations are defined. |
Find the absolute value of a number
param | x | The value to find the absolute value of |
returns | The non-negative absolute value of x |
method A Signum (A x) Source #
Find the sign of x
param | x | The value to find the sign of |
returns | -1, 0, or +1 |
method A FromInteger (int x) Source #
method A FromDecimal (decimal x) Source #
method A FromDouble (double x) Source #
method A divide <NUM, A> (A x, A y) Source #
Divide two numbers
param | x | left hand side of the division operation |
param | y | right hand side of the division operation |
returns | x / y |
method A abs <NUM, A> (A x) Source #
Find the absolute value of a number
param | x | The value to find the absolute value of |
returns | The non-negative absolute value of x |
method A signum <NUM, A> (A x) Source #
Find the sign of x
param | x | The value to find the sign of |
returns | -1, 0, or +1 |
method A fromInteger <NUM, A> (int x) Source #
method A fromDecimal <NUM, A> (decimal x) Source #
method A fromDouble <NUM, A> (double x) Source #