xte ::array <T >::back ()
Defined in header <xte/data/array.hpp> Definition
Accesses an element at the given index counting from the end, copying qualifiers from[[nodiscard ]]constexpr auto&& back (this auto&& self ,xte ::uz index =0 )noexcept ;
self .Example
Output:xte ::array array = {1 ,2 ,3 };std ::println ("{}" ,array .back ());
[View in Compiler Explorer]3