xte ::array <T >::operator+= ()
Defined in header <xte/data/array.hpp> Definition
Appends elements to the end of the array withconstexpr auto operator+= (this auto& lhs ,auto&& rhs )XTE_ARROW (/* ... */ )
.push_range ().Example
Output:xte ::array array = {1 ,2 ,3 };array +=xte ::array {4 ,5 ,6 };std ::println ("{}" ,array );
[View in Compiler Explorer][1, 2, 3, 4, 5, 6]