Trait simba::scalar::ClosedNeg

source ·
pub trait ClosedNeg: Sized + Neg<Output = Self> { }
Expand description

Trait alias for Neg with result of type Self.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ClosedNeg for T
where T: Neg<Output = T>,