Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
fill_n
Prototype

template<class ForwardRange, class Size, class Value>
ForwardRange& fill( ForwardRange& rng, Size n, const Value& val );

Description

fill_n assigns the value val to n elements in the range rng beginning with boost::begin(rng).

Definition

Defined in the header file boost/range/algorithm/fill_n.hpp

Requirements
Complexity

Linear. Exactly n assignments are performed.


PrevUpHomeNext