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