Trait concision_core::func::activate::binary::Heavyside

source ·
pub trait Heavyside {
    type Output;

    // Required method
    fn heavyside(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn heavyside(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl Heavyside for f32

§

type Output = f32

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for f64

§

type Output = f64

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for i8

§

type Output = i8

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for i16

§

type Output = i16

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for i32

§

type Output = i32

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for i64

§

type Output = i64

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for i128

§

type Output = i128

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for isize

§

type Output = isize

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for u8

§

type Output = u8

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for u16

§

type Output = u16

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for u32

§

type Output = u32

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for u64

§

type Output = u64

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for u128

§

type Output = u128

source§

fn heavyside(&self) -> Self::Output

source§

impl Heavyside for usize

§

type Output = usize

source§

fn heavyside(&self) -> Self::Output

source§

impl<A, S, D> Heavyside for ArrayBase<S, D>
where A: Heavyside, D: Dimension, S: Data<Elem = A>,

§

type Output = ArrayBase<OwnedRepr<<A as Heavyside>::Output>, D>

source§

fn heavyside(&self) -> Self::Output

Implementors§