4#ifndef TETL_ALGORITHM_FILL_N_HPP
5#define TETL_ALGORITHM_FILL_N_HPP
16template <
typename OutputIt,
typename Size,
typename T>
17constexpr auto fill_n(OutputIt first, Size count, T
const& value) -> OutputIt
19 for (
auto i = Size{0}; i < count; ++i) {
constexpr auto fill_n(OutputIt first, Size count, T const &value) -> OutputIt
Assigns the given value to the first count elements in the range beginning at first if count > 0....
Definition fill_n.hpp:17
Definition adjacent_find.hpp:9