void fill( const T& value ); | (since C++11) (until C++20) | |
constexpr void fill( const T& value ); | (since C++20) |
Assigns the value
to all elements in the container.
value | - | the value to assign to the elements |
(none).
Linear in the size of the container.
#include <array> #include <cstddef> #include <iostream> int main() { constexpr std::size_t xy = 4; using Cell = std::array<unsigned char, 8>; std::array<Cell, xy * xy> board; board.fill({ {0xE2, 0x96, 0x84, 0xE2, 0x96, 0x80, 0, 0} }); // "▄▀"; for (std::size_t count{}; Cell c : board) { std::cout << c.data() << ((++count % xy) ? "" : "\n"); } }
Possible output:
▄▀▄▀▄▀▄▀ ▄▀▄▀▄▀▄▀ ▄▀▄▀▄▀▄▀ ▄▀▄▀▄▀▄▀
copy-assigns the given value to every element in a range (function template) |
|
copy-assigns the given value to N elements in a range (function template) |
|
(C++20) | assigns a range of elements a certain value (niebloid) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/container/array/fill