find_end

fill and fill_n

template <class ForIter, class T>    void fill(ForIter start, ForIter end, const T &val);template <class OutIter, class Size, class T>     void fill_n(OutIter start, Size num, const T &val);

The fill( ) and fill_n( ) algorithms fill a range with the value specified by val. For fill( ), the range is specified by start and end. For fill_n( ), the range begins at start and runs for num elements.




C(s)C++ Programmer's Reference
C Programming on the IBM PC (C Programmers Reference Guide Series)
ISBN: 0673462897
EAN: 2147483647
Year: 2002
Pages: 539

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net