std::end
std::end
Defined in header <iterator> | ||
---|---|---|
(1) | ||
template< class C > auto end( C& c ) -> decltype(c.end()); | (since C++11) (until C++17) | |
template< class C > constexpr auto end( C& c ) -> decltype(c.end()); | (since C++17) | |
(1) | ||
Defined in header <iterator> | ||
---|---|---|
(1) | ||
template< class C > auto end( C& c ) -> decltype(c.end()); | (since C++11) (until C++17) | |
template< class C > constexpr auto end( C& c ) -> decltype(c.end()); | (since C++17) | |
(1) | ||