Range-v3
Range algorithms, views, and actions for the Standard Library
fill.hpp File Reference

Functions

template<typename O , typename S , typename V >
auto ranges::fill (O first, S last, V const &val) -> O requires output_iterator< O, V const &> &&sentinel_for< S, O >
 function template fill
 
template<typename Rng , typename V >
auto ranges::fill (Rng &&rng, V const &val) -> safe_iterator_t< Rng > requires output_range< Rng, V const &>