Namespaces
Variants
Actions

std::initializer_list<T>::end

From cppreference.com
 
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
(C++20)(C++20)(C++20)  
(C++20)
(C++20)
(C++14)
(C++11)
(C++11)
(C++23)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)


 
 
const T* end() const noexcept;
(since C++11)
(constexpr since C++14)

Obtains a pointer to one past the last element in the initializer list, i.e. begin()  + size().

If the initializer list is empty, the values of begin() and end() are unspecified, but will be identical.

[edit] Parameters

(none)

[edit] Return value

A pointer to one past the last element in the initializer list

[edit] Complexity

Constant

[edit] Example

Run this code
#include <initializer_list>
#include <numeric>
 
int main()
{
 static constexpr auto l = {3, 13, 13};
 static_assert(std::accumulate (l.begin(), l.end(), 13) == 42);
}

[edit] See also

returns a pointer to the first element
(public member function) [edit]
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/utility/initializer_list/end&oldid=177191"

AltStyle によって変換されたページ (->オリジナル) /