• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function
    <string_view>

    std::basic_string_view::rbegin

    constexpr const_reverse_iterator rbegin() const noexcept;
    

    概要

    末尾を指す逆イテレータを取得する。

    戻り値

    return const_reverse_iterator(end());
    

    #include <iostream>
    #include <string_view>
    #include <algorithm>
    
    int main()
    {
      std::string_view sv = "Hello";
    
      std::for_each(sv.rbegin(), sv.rend(), [](char c) {
        std::cout << c << std::endl;
      });
    }
    

    出力

    o
    l
    l
    e
    H
    

    バージョン

    言語

    • C++17

    処理系