Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Visual C++
Reference
Libraries Reference
<algorithm>
Functions
 checked_fill_n

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
Standard C++ Library Reference 
checked_fill_n 

Same as fill_n, but enforces the use of a checked iterator as output iterator. checked_fill_n is defined in the stdext namespace.

NoteNote

This algorithm is a Microsoft extension to the Standard C++ Library. Code implemented using this algorithm will not be portable.

template<class OutputIterator, class Size, class Type>
   void checked_fill_n(
      OutputIterator _First, 
      Size _Count, 
      const Type& _Val
   ); 

Parameters

_First

An output iterator addressing the position of the first element in the range to be assigned the value _Val.

_Count

A signed or unsigned integer type specifying the number of elements to be assigned the value.

_Val

The value to be assigned to elements in the range [_First, _First + _Count).

See fill_n for a code sample.

For more information on checked iterators, see Checked Iterators.

Header: <algorithm>

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
xutility shows error @(3048)      VOEagain   |   Edit   |   Show History
If you try to use the example for fill_n.cpp, and add using namespace stdext; and change fill_n( v1.begin( ) +5, 5, 2); to checked_fill_n( v1.begin( ) +5, 5, 2);, this error shows at compile time. Looking into xutility code at line 3048 , this line:
_STD _Fill_n(_First, _Count, _Val, _STD _Iter_cat(_First), _STD _Checked_cat(_Dest)); may be rewritten as:
_STD _Fill_n(_First, _Count, _Val, _STD _Iter_cat(_First), _STD _Checked_cat(_First));
and the example will compile correctly.
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker