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

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

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

Associated Types

type Output

Output type.

Loading content...

Required methods

fn inc(self) -> Self::Output

Increment self.

Loading content...

Implementors

Loading content...