◐ Shell
clean mode source ↗

std::array<T,N>::rend, std::array<T,N>::crend - cppreference.com

提供: 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 rend() noexcept;

(C++17未満)

constexpr reverse_iterator rend() noexcept;

(C++17以上)

const_reverse_iterator rend() const noexcept;

(C++17未満)

constexpr const_reverse_iterator rend() const noexcept;

(C++17以上)

const_reverse_iterator crend() const noexcept;

(C++17未満)

constexpr const_reverse_iterator crend() const noexcept;

(C++17以上)

逆順の array の最後の要素の次の要素を指す逆イテレータを返します。 これは非逆順の array}} の最初の要素の前の要素に対応します。 この要素はプレースホルダとして振る舞い、アクセスを試みると未定義動作になります。

引数

(なし)

戻り値

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

計算量

定数。

関連項目