Trait palette::num::Exp

source ·
pub trait Exp {
    // Required method
    fn exp(self) -> Self;
}
Expand description

Methods for calculating e ^ x,

Required Methods§

source

fn exp(self) -> Self

Return e ^ self.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Exp for f32

source§

fn exp(self) -> Self

source§

impl Exp for f64

source§

fn exp(self) -> Self

source§

impl Exp for f32x4

source§

fn exp(self) -> Self

source§

impl Exp for f32x8

source§

fn exp(self) -> Self

source§

impl Exp for f64x2

source§

fn exp(self) -> Self

source§

impl Exp for f64x4

source§

fn exp(self) -> Self

Implementors§