Trait End
Source pub trait End {
type Output;
// Required method
unsafe fn end(&self) -> Self::Output;
}
Expand description
Represents C++’s end() const
function.
Returns a C++ const 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.