名前空間
変種
操作

std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::rend, std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::crend

From cppreference.com
 
 
 
 
reverse_iterator rend() noexcept;
(1) (C++23から)
const_reverse_iterator rend() const noexcept;
(2) (C++23から)
const_reverse_iterator crend() const noexcept;
(3) (C++23から)

逆順のflat_mapの最後の要素の次の要素への逆イテレータを返します。これは、通常の順序のflat_mapの最初の要素の前の要素に対応します。この要素はプレースホルダとして機能し、アクセスしようとすると未定義の動作を引き起こします。

range-rbegin-rend.svg

目次

[編集] 戻り値

最後の要素の次の要素へのリバースイテレータ。

[編集] 複雑性

定数。

[編集]

#include <chrono>
#include <iomanip>
#include <iostream>
#include <string_view>
#include <flat_map>
 
using namespace std::chrono;
 
int main()
{
    const std::flat_map<year_month_day, int> messages
    {
        {February/17/2023, 10},
        {February/17/2023, 20},
        {February/16/2022, 30},
        {October/22/2022, 40},
        {June/14/2022, 50},
        {November/23/2021, 60},
        {December/10/2022, 55},
        {December/12/2021, 45},
        {April/1/2020, 42},
        {April/1/2020, 24}
    };
 
    std::cout << "Messages received (date order is reversed):\n";
    for (auto it = messages.crbegin(); it != messages.crend(); ++it)
        std::cout << it->first << " : " << it->second << '\n';
}

実行結果の例

Messages received (date order is reversed):
2023-02-17 : 10
2022-12-10 : 55
2022-10-22 : 40
2022-06-14 : 50
2022-02-16 : 30
2021-12-12 : 45
2021-11-23 : 60
2020-04-01 : 42

[編集] 関連項目

先頭への逆イテレータを返す
(public メンバ関数) [編集]
(C++14)
コンテナまたは配列の逆順の終端イテレータを返す
(function template) [編集]
English 日本語 中文(简体) 中文(繁體)