pub trait Negate {
    // Required method
    fn negate(self) -> Self;
}
Expand description

A container that can negate its updates.

Required Methods§

Source

fn negate(self) -> Self

Negates Abelian differences of each update.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<D, T, R: Abelian> Negate for Vec<(D, T, R)>

Source§

fn negate(self) -> Self

Implementors§