Trait rand::FloatMath
[−]
[src]
trait FloatMath: Sized { fn exp(self) -> Self; fn ln(self) -> Self; fn sqrt(self) -> Self; fn powf(self, n: Self) -> Self; }
Unstable (
rand
): use rand
from crates.io
Required Methods
fn exp(self) -> Self
Unstable (
rand
): use rand
from crates.io
fn ln(self) -> Self
Unstable (
rand
): use rand
from crates.io
fn sqrt(self) -> Self
Unstable (
rand
): use rand
from crates.io
fn powf(self, n: Self) -> Self
Unstable (
rand
): use rand
from crates.io
Implementors
impl FloatMath for f64