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