Namespaces
Variants
Actions

std::initializer_list<T>::end

From cppreference.com
 
C++
 
Utilities library
General utilities
Relational operators (deprecated in C++20)
 
std::initializer_list
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.

Contents

[edit] Parameters

(none)

[edit] Return value

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

[edit] Complexity

Constant

[edit] Example

#include <initializer_list>
#include <numeric>
 
int main()
{
    static constexpr auto l = {3, 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]

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant