Trait shades::Exponential[][src]

pub trait Exponential: Sized {
    fn pow(&self, p: impl Into<Self>) -> Self;
fn exp(&self) -> Self;
fn exp2(&self) -> Self;
fn log(&self) -> Self;
fn log2(&self) -> Self;
fn sqrt(&self) -> Self;
fn isqrt(&self) -> Self; }

Required methods

fn pow(&self, p: impl Into<Self>) -> Self[src]

fn exp(&self) -> Self[src]

fn exp2(&self) -> Self[src]

fn log(&self) -> Self[src]

fn log2(&self) -> Self[src]

fn sqrt(&self) -> Self[src]

fn isqrt(&self) -> Self[src]

Loading content...

Implementors

impl Exponential for Expr<f32>[src]

impl Exponential for Expr<V2<f32>>[src]

impl Exponential for Expr<V3<f32>>[src]

impl Exponential for Expr<V4<f32>>[src]

Loading content...