Trait End

Source
pub trait End {
    type Output;

    // Required method
    fn end(self) -> Self::Output;
}
Expand description

Represents C++’s end() const function.

Required Associated Types§

Source

type Output

Output type.

Required Methods§

Source

fn end(self) -> Self::Output

Returns a C++ const iterator object pointing to the end of the collection.

Implementors§