[][src]Trait cpp_core::ops::EndMut

pub trait EndMut {
    type Output;
    unsafe fn end_mut(&self) -> Self::Output;
}

Represents C++'s end() function.

Associated Types

type Output

Output type.

Loading content...

Required methods

unsafe fn end_mut(&self) -> Self::Output

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

Safety

The caller must make sure self contains a valid pointer. This function may invoke arbitrary foreign code, so no safety guarantees can be made.

Loading content...

Implementors

Loading content...