Namespaces
Variants

std::span<T,Extent>:: end, std::span<T,Extent>:: cend

From cppreference.net

constexpr iterator end ( ) const noexcept ;
(1) (C++20以降)
constexpr const_iterator cend ( ) const noexcept ;
(2) (C++23以降)

* this の最後の要素の次を指すイテレータを返します。

この返されたイテレータはセンチネルとしてのみ機能します。これが デリファレンス可能 であることは保証されていません。

range-begin-end.svg

目次

戻り値

最後の要素の次のイテレータ。

計算量

定数。

#include <iostream>
#include <span>
void print(std::span<const int> array)
{
    std::cout << "array = ";
    for (auto it = array.begin(); it != array.end(); ++it)
        std::cout << *it << ' ';
    std::cout << '\n';
}
void set_first_element(std::span<int> sp, int new_value)
{
    if (!sp.empty())
    {
        std::cout << "old *begin = " << *sp.begin() << '\n';
        *sp.begin() = new_value;
        std::cout << "new *begin = " << *sp.begin() << '\n';
    }
}
int main()
{
    int array[]{1, 3, 4, 5};
    print(array);
    set_first_element(array, 2);
    print(array);
}

出力:

array = 1 3 4 5
old *begin = 1
new *begin = 2
array = 2 3 4 5

関連項目

先頭を指すイテレータを返す
(公開メンバ関数)
(C++11) (C++14)
コンテナまたは配列の終端を指すイテレータを返す
(関数テンプレート)