最終更新日時(UTC):
が更新

履歴 編集

function
<list>

std::list::crbegin(C++11)

const_reverse_iterator crbegin() const noexcept;

概要

末尾要素を指す読み取り専用逆イテレータを取得する。

戻り値

末尾要素を指す読み取り専用逆イテレータ

例外

投げない

#include <iostream>
#include <list>
#include <algorithm>

int main()
{
  std::list<int> ls = { 1, 2, 3 };

  // このアルゴリズム内ではlsの書き換えを決して行わない
  std::for_each(ls.crbegin(), ls.crend(), [](const int& x) {
    std::cout << x << std::endl;
  });
}

出力

3
2
1

バージョン

言語

  • C++11

処理系

参照