次の方法で共有


<iterator> 関数

advance

指定された位置の番号によって反復子をインクリメントします。

template <class InputIterator, class Distance>
void advance(InputIterator& InIt, Distance Off);

パラメーター

InIt
インクリメントされる、入力反復子の要件を満たしている必要がある反復子。

Off
反復子の差の型に変換可能で、反復子の位置を進めるインクリメントの数を指定する整数型。

解説

範囲は非円である必要があります。反復子は逆参照可能であるか、末尾を超える必要があります。

InputIteratorが双方向反復子型の要件を満たしている場合、Off負の値になる可能性があります。 InputIteratorが入力反復子型または前方反復子型の場合、Offは負でない必要があります。

InputIterator がランダム アクセス反復子の要件を満たす場合、advance 関数の複雑さは一定です。それ以外の場合、複雑さは線形的になり、潜在的にコストが高くなります。

// iterator_advance.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main()
{
    using namespace std;

    list<int> L;
    for (int i = 1; i < 9; ++i)
    {
        L.push_back(i);
    }
    list<int>::iterator LPOS = L.begin();

    cout << "The list L is: ( ";
    for (auto L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;

    cout << "The iterator LPOS initially points to the first element: "
        << *LPOS << "." << endl;

    advance(LPOS, 4);
    cout << "LPOS is advanced 4 steps forward to point"
        << " to the fifth element: "
        << *LPOS << "." << endl;

    advance(LPOS, -3);
    cout << "LPOS is moved 3 steps back to point to the "
        << "2nd element: " << *LPOS << "." << endl;
}
The list L is: ( 1 2 3 4 5 6 7 8 ).
The iterator LPOS initially points to the first element: 1.
LPOS is advanced 4 steps forward to point to the fifth element: 5.
LPOS is moved 3 steps back to point to the 2nd element: 2.

back_inserter

指定されたコンテナーの後ろに要素を挿入できる反復子を作成します。

template <class Container>
back_insert_iterator<Container> back_inserter(Container& Cont);

パラメーター

Cont
後方挿入の実行対象となるコンテナー。

戻り値

コンテナー オブジェクト Cont に関連付けられる back_insert_iterator

解説

C++ 標準ライブラリ内では、引数は、メンバー関数が push_backする 3 つのシーケンス コンテナーのいずれかを参照する必要があります: deque Classlist Class、または vector Class

// iterator_back_inserter.cpp
// compile with: /EHsc
#include <iterator>
#include <vector>
#include <iostream>

int main()
{
    using namespace std;

    vector<int> vec;
    for (int i = 0; i < 3; ++i)
    {
        vec.push_back(i);
    }

    cout << "The initial vector vec is: ( ";
    for (auto vIter = vec.begin(); vIter != vec.end(); vIter++)
    {
        cout << *vIter << " ";
    }
    cout << ")." << endl;

    // Insertions can be done with template function
    back_insert_iterator<vector<int> > backiter(vec);
    *backiter = 30;
    backiter++;
    *backiter = 40;

    // Alternatively, insertions can be done with the
    // back_insert_iterator member function
    back_inserter(vec) = 500;
    back_inserter(vec) = 600;

    cout << "After the insertions, the vector vec is: ( ";
    for (auto vIter = vec.begin(); vIter != vec.end(); vIter++)
    {
        cout << *vIter << " ";
    }
    cout << ")." << endl;
}
The initial vector vec is: ( 0 1 2 ).
After the insertions, the vector vec is: ( 0 1 2 30 40 500 600 ).

begin

指定されたコンテナーの最初の要素への反復子を取得します。

template <class Container>
auto begin(Container& cont)  `
   -> decltype(cont.begin());

template <class Container>
auto begin(const Container& cont)   `
   -> decltype(cont.begin());

template <class Ty, class Size>
Ty *begin(Ty (& array)[Size]);

パラメーター

cont
コンテナー。

array
Ty 型のオブジェクトの配列。

戻り値

最初の 2 つのテンプレート関数は、cont.begin() を返します。 最初の関数は定数ではなく、2 番目の関数は定数です。

3 番目のテンプレート関数は array を返します。

さらに、より一般的な動作が必要な場合は、コンテナーのメンバーである begin() の代わりにこのテンプレート関数を使用することをお勧めします。

// cl.exe /EHsc /nologo /W4 /MTd
#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <vector>

template <typename C> void reverse_sort(C& c)
{
    std::sort(std::begin(c), std::end(c), std::greater<>());
}

template <typename C> void print(const C& c)
{
    for (const auto& e : c)
    {
        std::cout << e << " ";
    }
    std::cout << "\n";
}

int main() 
{
    std::vector<int> v = { 11, 34, 17, 52, 26, 13, 40, 20, 10, 5, 16, 8, 4, 2, 1 };

    print(v);
    reverse_sort(v);
    print(v);

    std::cout << "--\n";

    int arr[] = { 23, 70, 35, 106, 53, 160, 80, 40, 20, 10, 5, 16, 8, 4, 2, 1 };

    print(arr);
    reverse_sort(arr);
    print(arr);
}
11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
52 40 34 26 20 17 16 13 11 10 8 5 4 2 1
--
23 70 35 106 53 160 80 40 20 10 5 16 8 4 2 1
160 106 80 70 53 40 35 23 20 16 10 8 5 4 2 1

reverse_sort 関数は、通常の配列に加えて、任意の種類のコンテナーをサポートします。これは、メンバーではないバージョンの begin() を呼び出すためです。 コンテナー メンバー begin()を使用するためのコーディングreverse_sort:

template <typename C>
void reverse_sort(C& c) {
    using std::begin;
    using std::end;

    std::sort(c.begin(), c.end(), std::greater<>());

}

その後、配列を送信すると、次のコンパイラ エラーが発生します。

error C2228: left of '.begin' must have class/struct/union

cbegin

指定したコンテナー内の最初の要素を指す const (読み取り専用) 反復子を取得します。

template <class Container>
auto cbegin(const Container& cont)
   -> decltype(cont.begin());

パラメーター

cont
コンテナーまたは initializer_list

戻り値

cont.begin() 定数。

解説

この関数は、すべての C++ 標準ライブラリ コンテナーと initializer_listで動作します。

begin() テンプレート関数の代わりにこのメンバー関数を使用して、戻り値が const_iterator になることを保証できます。 通常は、次の例に示すように auto 型推論キーワードと一緒に使用します。 例では、Containerbegin()cbegin() をサポートする変更可能な (非 const) コンテナーまたは任意の種類の initializer_list であると見なします。

auto i1 = Container.begin();
// i1 is Container<T>::iterator
auto i2 = Container.cbegin();

// i2 is Container<T>::const_iterator

cend

指定したコンテナー内の最後の要素に続く要素を指す const (読み取り専用) 反復子を取得します。

template <class Container>
auto cend(const Container& cont)
   -> decltype(cont.end());

パラメーター

cont
コンテナーまたは initializer_list

戻り値

cont.end() 定数。

解説

この関数は、すべての C++ 標準ライブラリ コンテナーと initializer_listで動作します。

end() テンプレート関数の代わりにこのメンバー関数を使用して、戻り値が const_iterator になることを保証できます。 通常は、次の例に示すように auto 型推論キーワードと一緒に使用します。 例では、Containerend()cend() をサポートする変更可能な (非 const) コンテナーまたは任意の種類の initializer_list であると見なします。

auto i1 = Container.end();
// i1 is Container<T>::iterator
auto i2 = Container.cend();

// i2 is Container<T>::const_iterator

crbegin

コンテナーの末尾から始まる、コンテナーの要素に対する逆読み取り専用反復子を取得します。

template <class C> constexpr auto crbegin(const C& c) -> decltype(std::rbegin(c));

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

戻り値

この反復子は、コンテナーの最後から、コンテナーの要素を逆の順序で返します。

要素 10、20、30 を含むベクターの図。センチネルを表す左端の要素 (左端の要素に数値 10 が含まれています) の前に架空のボックスがあります。crend() というラベルが付いています。ベクトル内の最初の要素には数値 10 が含まれており、

例: crbegin

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{10, 20, 30};
    for (auto i = std::crbegin(v); i != std::crend(v); ++i)
    {
        std::cout << *i << ' '; // outputs 30 20 10
    }
    // v[1] = 100; // error because the iterator is const
}
30 20 10

crend

読み取り専用の反転された要素シーケンスの末尾にあるセンチネルを取得します。

template <class C> constexpr auto crend(const C& c) -> decltype(std::rend(c));

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

戻り値

Sentinel は、コンテナーの反転ビューの最後の要素に従います。

要素 10、20、30 を含むベクターの図。センチネルを表す左端の要素 (左端の要素に数値 10 が含まれています) の前に架空のボックスがあります。crend() というラベルが付いています。ベクトル内の最初の要素には数値 10 が含まれており、

crend の例

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{10, 20, 30};
    auto vi = std::crend(v);
    --vi; // get off the sentinel and onto the last element in the reversed range
    std::cout << *vi; // outputs 10
    // vi[0] = 300; // error because the iterator is const
}
10

data

コンテナー内の最初の要素へのポインターを取得します。

1) template <class C> constexpr auto data(C& c) -> decltype(c.data());
2) template <class C> constexpr auto data(const C& c) -> decltype(c.data());
3) template <class T, size_t N> constexpr T* data(T (&array)[N]) noexcept;
4) template <class E> constexpr const E* data(initializer_list<E> il) noexcept;

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

E
初期化子リストの要素型。

il
初期化子リスト。

N
配列内の 要素の数。

T
配列内のデータの型。

戻り値

1、2) コンテナーの型に基づく最初の要素へのポインター。 たとえば、コンテナーが整数のベクトルである場合、戻り値の型は int *です。

3) 配列としての最初の要素へのポインター。

4) 初期化子リストの最初の要素へのポインター。

data

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{ 10, 20, 30 };
    std::string src{ "a string" };

    const char *charPtr = std::data(src);
    int* intPtr = std::data(v);
    std::cout << charPtr << ", " << *intPtr << '\n'; // a string, 10
}
a string, 10

distance

2 つの反復子によってアドレス指定された位置の間のインクリメント数を決定します。

template <class InputIterator>
typename iterator_traits<InputIterator>::difference_type distance(InputIterator first, InputIterator last);

パラメーター

first
2 番目の反復子からの距離を特定する 1 番目の反復子。

last
1 番目の反復子からの距離を特定する 2 番目の反復子。

戻り値

firstlastになるまでインクリメントする必要がある回数。

解説

InputIterator がランダム アクセス反復子の要件を満たす場合、distance 関数の複雑さは一定です。それ以外の場合、複雑さは線形的になり、潜在的にコストが高くなります。

// iterator_distance.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main()
{
    using namespace std;

    list<int> L;
    for (int i = -1; i < 9; ++i)
    {
        L.push_back(2 * i);
    }
    list <int>::iterator L_Iter, LPOS = L.begin();

    cout << "The list L is: ( ";
    for (L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;

    cout << "The iterator LPOS initially points to the first element: "
         << *LPOS << "." << endl;

    advance(LPOS, 7);
    cout << "LPOS is advanced 7 steps forward to point "
        << " to the eighth element: "
        << *LPOS << "." << endl;

    list<int>::difference_type Ldiff;
    Ldiff = distance(L.begin(), LPOS);
    cout << "The distance from L.begin( ) to LPOS is: "
        << Ldiff << "." << endl;
}
The list L is: ( -2 0 2 4 6 8 10 12 14 16 ).
The iterator LPOS initially points to the first element: -2.
LPOS is advanced 7 steps forward to point  to the eighth element: 12.
The distance from L.begin( ) to LPOS is: 7.

empty

template <class C> constexpr auto empty(const C& c) -> decltype(c.empty());
template <class T, size_t N> constexpr bool empty(const T (&array)[N]) noexcept;
template <class E> constexpr bool empty(initializer_list<E> il) noexcept;

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

E
初期化子リストの要素型。

il
初期化子リスト。

N
配列内の 要素の数。

T
配列内のデータの型。

戻り値

コンテナーに要素がない場合は true を返します。それ以外の場合は false

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{ 10,20,30 };
    std::vector<int> v2;

    std::cout << std::boolalpha << std::empty(v); // outputs false
    std::cout << std::boolalpha << ", " << std::empty(v2); // outputs true
}
false, true

end

指定されたコンテナーの最後の要素の後ろにある要素への反復子を取得します。

template <class Container>
auto end(Container& cont)
   -> decltype(cont.end());

template <class Container>
auto end(const Container& cont)
   -> decltype(cont.end());

template <class Ty, class Size>
Ty *end(Ty (& array)[Size]);

パラメーター

cont
コンテナー。

array
Ty 型のオブジェクトの配列。

戻り値

最初の 2 つのテンプレート関数は cont.end() を返します (最初は非定数で、2 番目は定数です)。

3 番目のテンプレート関数は array + Size を返します。

解説

コード例については、「begin」を参照してください。

front_inserter

指定されたコンテナーの前に要素を挿入できる反復子を作成します。

template <class Container>
front_insert_iterator<Container> front_inserter(Container& Cont);

パラメーター

Cont
先頭に要素が挿入されるコンテナー オブジェクト。

戻り値

コンテナー オブジェクト Cont に関連付けられる front_insert_iterator

解説

front_insert_iterator クラスのメンバー関数 front_insert_iterator も使用できます。

C++ 標準ライブラリでは、引数は、メンバー関数 push_back が含まれる deque クラスまたは "list クラス" の 2 つのシーケンス コンテナーのいずれかを参照する必要があります。

// iterator_front_inserter.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main()
{
    using namespace std;

    list<int> L;
    for (int i = -1; i < 9; ++i)
    {
        L.push_back(i);
    }

    cout << "The list L is:\n ( ";
    for (auto L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;

    // Using the template function to insert an element
    front_insert_iterator<list <int>> Iter(L);
    *Iter = 100;

    // Alternatively, you may use the front_insert member function
    front_inserter(L) = 200;

    cout << "After the front insertions, the list L is:\n ( ";
    for (auto L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;
}
The list L is:
( -1 0 1 2 3 4 5 6 7 8 ).
After the front insertions, the list L is:
( 200 100 -1 0 1 2 3 4 5 6 7 8 ).

inserter

insert_iterator<Container>(Cont, Where) の代わりに inserter(Cont, Where) を使用できるようにするヘルパー テンプレート関数。

template <class Container>
insert_iterator<Container>
inserter(
    Container& Cont,
    typename Container::iterator Where);

パラメーター

Cont
新しい要素が追加されるコンテナー。

Where
挿入位置を指定する反復子。

解説

このテンプレート関数は insert_iterator<Container>(Cont, Where) を返します。

// iterator_inserter.cpp
// compile with: /EHsc
#include <iterator>
#include <list>
#include <iostream>

int main()
{
    using namespace std;

    list<int> L;
    for (int i = 2; i < 5; ++i)
    {
        L.push_back(10 * i);
    }

    cout << "The list L is:\n ( ";
    for (auto L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;

    // Using the template version to insert an element
    insert_iterator<list<int>> Iter(L, L.begin());
    *Iter = 1;

    // Alternatively, using the member function to insert an element
    inserter(L, L.end()) = 500;

    cout << "After the insertions, the list L is:\n ( ";
    for (auto L_Iter = L.begin(); L_Iter != L.end(); L_Iter++)
    {
        cout << *L_Iter << " ";
    }
    cout << ")." << endl;
}
The list L is:
( 20 30 40 ).
After the insertions, the list L is:
( 1 20 30 40 500 ).

make_checked_array_iterator

他のアルゴリズムで使用できる checked_array_iterator を作成します。

Note

この関数は、標準 C++ ライブラリの Microsoft 拡張機能です。 この関数を使用して実装されるコードは、Microsoft 拡張機能をサポートしない C++ 標準ビルド環境には移植できません。

template <class Iter>
checked_array_iterator<Iter>
    make_checked_array_iterator(
Iter Ptr,
    size_t Size,
    size_t Index = 0);

パラメーター

Ptr
コピー先配列へのポインター。

Size
ターゲット配列のサイズ。

Index
配列のインデックス (省略可能)。

戻り値

checked_array_iterator のインスタンス。

解説

make_checked_array_iterator 関数は stdext 名前空間で定義されています。

この関数は、生のポインター (通常、境界オーバーランに関する問題の原因となる) を受け取り、チェックを行う checked_array_iterator クラスでポインターをラップします。 そのクラスはチェック済みとしてマークされるので、C++ 標準ライブラリはそれについて警告を表示しません。 詳細およびコード例については、「チェックを行う反復子」を参照してください。

次の例では、ベクターが作成され、10 個の項目が設定されます。 ベクターのコンテンツはコピー アルゴリズムで配列にコピーされ、make_checked_array_iterator を使用してコピー先が指定されます。 その後、境界チェックの意図的な違反によって、デバッグのアサーション エラーがトリガーされます。

// make_checked_array_iterator.cpp
// compile with: /EHsc /W4 /MTd

#include <algorithm>
#include <iterator> // stdext::make_checked_array_iterator
#include <memory> // std::make_unique
#include <iostream>
#include <vector>
#include <string>

using namespace std;

template <typename C> void print(const string& s, const C& c)
{
    cout << s;

    for (const auto& e : c) 
    {
        cout << e << " ";
    }

    cout << endl;
}

int main()
{
    const size_t dest_size = 10;
    // Old-school but not exception safe, favor make_unique<int[]>
    // int* dest = new int[dest_size];
    unique_ptr<int[]> updest = make_unique<int[]>(dest_size);
    int* dest = updest.get(); // get a raw pointer for the demo

    vector<int> v;

    for (int i = 0; i < dest_size; ++i) 
    {
        v.push_back(i);
    }
    print("vector v: ", v);

    copy(v.begin(), v.end(), stdext::make_checked_array_iterator(dest, dest_size));

    cout << "int array dest: ";
    for (int i = 0; i < dest_size; ++i)
    {
        cout << dest[i] << " ";
    }
    cout << endl;

    // Add another element to the vector to force an overrun.
    v.push_back(10);

    // ! The next line causes a debug assertion when it executes.
    copy(v.begin(), v.end(), stdext::make_checked_array_iterator(dest, dest_size));
}

make_move_iterator

指定した反復子を stored 反復子として含む move iterator を作成します。

template <class Iterator>
move_iterator<Iterator>
make_move_iterator(const Iterator& It);

パラメーター

It
新しい move 反復子に格納する反復子。

解説

テンプレート関数は move_iterator <Iterator>(_It)を返します。

make_unchecked_array_iterator

他のアルゴリズムで使用できる unchecked_array_iterator を作成します。

Note

この関数は、標準 C++ ライブラリの Microsoft 拡張機能です。 この関数を使用して実装されるコードは、Microsoft 拡張機能をサポートしない C++ 標準ビルド環境には移植できません。

template <class Iter>
unchecked_array_iterator<Iter>
    make_unchecked_array_iterator(Iter Ptr);

パラメーター

Ptr
コピー先配列へのポインター。

戻り値

unchecked_array_iterator のインスタンス。

解説

make_unchecked_array_iterator 関数は stdext 名前空間で定義されています。

この関数は生のポインターを受け取り、チェックを行わず何も最適化しないクラスにラップしますが、C4996 などのコンパイラ警告も抑制します。 したがって、これは未チェックのポインターの警告を処理するのに適した方法であり、警告がグローバルに抑制されることも、チェックのコストが発生することもありません。 詳細およびコード例については、「チェックを行う反復子」を参照してください。

次の例では、ベクターが作成され、10 個の項目が設定されます。 ベクターのコンテンツはコピー アルゴリズムで配列にコピーされ、make_unchecked_array_iterator を使用してコピー先が指定されます。

// make_unchecked_array_iterator.cpp
// compile with: /EHsc /W4 /MTd

#include <algorithm>
#include <iterator> // stdext::make_unchecked_array_iterator
#include <iostream>
#include <vector>
#include <string>

using namespace std;

template <typename C> void print(const string& s, const C& c)
{
    cout << s;

    for (const auto& e : c) 
    {
        cout << e << " ";
    }

    cout << endl;
}

int main()
{
    const size_t dest_size = 10;
    int* dest = new int[dest_size];
    vector<int> v;

    for (int i = 0; i < dest_size; ++i) 
    {
        v.push_back(i);
    }
    print("vector v: ", v);

    // COMPILER WARNING SILENCED: stdext::unchecked_array_iterator is marked as checked in debug mode
    // (it performs no checking, so an overrun will trigger undefined behavior)
    copy(v.begin(), v.end(), stdext::make_unchecked_array_iterator(dest));

    cout << "int array dest: ";
    for (int i = 0; i < dest_size; ++i)
    {
        cout << dest[i] << " ";
    }
    cout << endl;

    delete[] dest;
}
vector v: 0 1 2 3 4 5 6 7 8 9
int array dest: 0 1 2 3 4 5 6 7 8 9

next

指定された回数を繰り返し、新しい反復子の位置を返します。

template <class InputIterator>
InputIterator next(
    InputIterator first,
    typename iterator_traits<InputIterator>::difference_type off = 1);

パラメーター

first
現在位置を返します。

off
反復する回数。

戻り値

off 回繰り返した後の新しい反復子の位置を返します。

解説

このテンプレート関数は、off 回インクリメントされた next を返します。

prev

指定された回数を逆方向に繰り返し、新しい反復子の位置を返します。

template <class BidirectionalIterator>
BidirectionalIterator prev(
    BidirectionalIterator first,
    typename iterator_traits<BidirectionalIterator>::difference_type off = 1);

パラメーター

first
現在位置を返します。

off
反復する回数。

解説

このテンプレート関数は、off 回デクリメントされた next を返します。

rbegin

コンテナーの要素を逆の順序で返す反復子を取得します。

template <class C> constexpr auto rbegin(C& c) -> decltype(c.rbegin());
template <class C> constexpr auto rbegin(const C& c) -> decltype(c.rbegin());

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

戻り値

返される反復子は、反転された範囲の末尾から始まる、コンテナーの要素を逆の順序で表示します。

要素 10、20、30 を含むベクターの図。センチネルを表す左端の要素 (左端の要素に数値 10 が含まれています) の前に架空のボックスがあります。rend() というラベルが付いています。ベクトル内の最初の要素には数値 10 が含まれており、

rbegin

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{ 10, 20, 30 };

	for (auto e = std::rbegin(v); e != std::rend(v); ++e)
	{
		std::cout << *e << ' '; // outputs 30 20 10
	}
}
30 20 10

rend

逆順の要素シーケンスの末尾にあるセンチネルを取得します。

template <class C> constexpr auto rend(C& c)-> decltype(c.rend());
template <class C> constexpr auto rend(const C& c) -> decltype(c.rend());

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

戻り値

コンテナーの末尾にあるセンチネルを指す逆反復子。 Sentinel は、コンテナーの反転ビューの最後の要素に従います。

要素 10、20、30 を含むベクターの図。センチネルを表す左端の要素 (左端の要素に数値 10 が含まれています) の前に架空のボックスがあります。rend() というラベルが付いています。ベクトル内の最初の要素には数値 10 が含まれており、

rend の例

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{10, 20, 30};
    auto vi = std::rend(v);
    --vi; // get off the sentinel and onto the last element in the reversed range
    std::cout << *vi; // outputs 10
}
10

size

template <class C> constexpr auto size(const C& c)
    -> decltype(c.size());
template <class T, size_t N> constexpr size_t size(const T (&array)[N]) noexcept;

パラメーター

C
コンテナーの種類。

c
コンテナーのインスタンス。

N
配列内の 要素の数。

T
配列内のデータの型。

戻り値

符号なし整数に似た値としてのコンテナー内の要素の数。

size

#include <vector>
#include <iostream>

int main()
{
    std::vector<int> v{ 10, 20, 30 };
    size_t s = std::size(v);
    std::cout << s; // outputs 3
}
3