Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Visual C++
Reference
Libraries Reference
<algorithm>
Functions
 checked_generate_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_generate_n 

Same as generate_n, but enforces the use of a checked iterator as output iterator. checked_generate_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 Generator>
   void checked_generate_n(
      OutputIterator _First, 
      Size _Count, 
      Generator _Gen
   );

Parameters

_First

An output iterator addressing the position of first element in the range to which values are to be assigned.

_Count

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

_Gen

A function object that is called with no arguments that is used to generate the values to be assigned to each of the elements in the range.

See generate_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
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker