[][src]Trait cpp_core::ops::Decrement

pub trait Decrement {
    type Output;
    unsafe fn dec(&mut self) -> Self::Output;
}

Represents C++'s prefix decrement (--a).

Associated Types

type Output

Output type.

Loading content...

Required methods

unsafe fn dec(&mut self) -> Self::Output

Decrement self.

Loading content...

Implementors

Loading content...