std::array<T,N>::fill
From cppreference.com
void fill( const T& value ); |
(since C++11) (until C++20) |
|
constexpr void fill( const T& value ); |
(since C++20) | |
Assigns the given value value
to all elements in the container.
Parameters
value | - | the value to assign to the elements |
Return value
(none)
Complexity
Linear in the size of the container.