close
名前空間
変種

std::array<T,N>::rbegin, std::array<T,N>::crbegin

提供: cppreference.com
 
 
 
 
<tbody> </tbody> <tbody class="t-dcl-rev "> </tbody><tbody> </tbody> <tbody class="t-dcl-rev "> </tbody><tbody> </tbody> <tbody class="t-dcl-rev "> </tbody><tbody> </tbody>
reverse_iterator rbegin() noexcept;
(C++17未満)
constexpr reverse_iterator rbegin() noexcept;
(C++17以上)
const_reverse_iterator rbegin() const noexcept;
(C++17未満)
constexpr const_reverse_iterator rbegin() const noexcept;
(C++17以上)
const_reverse_iterator crbegin() const noexcept;
(C++17未満)
constexpr const_reverse_iterator crbegin() const noexcept;
(C++17以上)

逆順の array の最初の要素を指す逆イテレータを返します。 これは非逆順の array の最後の要素に対応します。 array が空の場合、返されるイテレータは rend() と等しくなります。

Image

引数

(なし)

戻り値

最初の要素を指す逆イテレータ。

計算量

定数。


関連項目

終端を指す逆イテレータを返します
(パブリックメンバ関数) [edit]