[][src]Trait cpp_core::ops::Increment

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

Represents C++'s prefix increment (++a).

Associated Types

type Output

Output type.

Loading content...

Required methods

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

Increment self.

Loading content...

Implementors

Loading content...