std::end
From cppreference.com
Defined in header <iterator>
|
||
template <class C> auto end(C &c) -> decltype(c.end()); template <class C> auto end(const C &c) -> decltype(c.end()); |
||
Returns an iterator to the end of the given container Template:cpp or array Template:cpp.
Parameters
c | - | a container with an end method |
array | - | an array of arbitrary type |
Return value
an iterator to the end of Template:cpp or Template:cpp