xte ::array <T >::rbegin ()
Defined in header <xte/data/array.hpp> Definitions
#0With the same qualifiers as[[nodiscard ]]constexpr auto rbegin (this auto&& self )noexcept ;
self , returns a reverse iterator starting at the last element, or .rend () if there are none.#1
Same as #0 but[[nodiscard ]]constexpr auto crbegin ()const noexcept ;
const -qualified.Example
Output:xte ::array array = {1 ,2 ,3 };std ::println ("{}" , *array .rbegin ());
[View in Compiler Explorer]3