4#ifndef TETL_ALGORITHM_FILL_HPP
5#define TETL_ALGORITHM_FILL_HPP
11template <
typename ForwardIt,
typename T>
12constexpr auto fill(ForwardIt first, ForwardIt last, T
const& value) ->
void
14 for (; first != last; ++first) {
constexpr auto fill(ForwardIt first, ForwardIt last, T const &value) -> void
Assigns the given value to the elements in the range [first, last).
Definition fill.hpp:12
Definition adjacent_find.hpp:9