Members
Bindings
var value: ???
Functions
fun +=(_ other: Self) { inout }
Writes the sum of self and other to self.
fun -=(_ other: Self) { inout }
Writes the result of self subtracted by other to self.
fun *=(_ other: Self) { inout }
Writes the product of self and other to self.
fun /=(_ other: Self) { inout }
Writes the quotient of dividing self by other to self.
fun %=(_ other: Self) { inout }
Writes the remainder of dividing self by other to self.
fun <=(_ other: Self) -> Bool
Returns true if self is smaller than or equal to other; returns false otherwise.
fun >=(_ other: Self) -> Bool
Returns true if self is greater than or equal to other; returns false otherwise.
static fun pi() -> Float64
The mathematical constant pi (π), approximately equal to 3.14159.