Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Standard C++ Library Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

raw_storage_iterator

Module:  Standard C++ Library   Library:  General utilities


raw_storage_iterator iterator

Local Index

Members

Summary

Enables iterator-based algorithms to store results in uninitialized memory.

Synopsis

#include <memory>

namespace std {
  template <class OutputIterator, class T>
  class raw_storage_iterator;
}

Description

Class raw_storage_iterator enables iterator-based algorithms to store their results in uninitialized memory. The template parameter OutputIterator is required to have its operator* return an object for which operator& is both defined and returns a pointer to T.

Interface

Constructor

raw_storage_iterator (iterator_type x);

Member Operators

raw_storage_iterator <OutputIterator, T>&
operator=(const T& element);
raw_storage_iterator<OutputIterator,T>& 
operator*();
raw_storage_iterator& 
operator++();
raw_storage_iterator
operator++(int);

Standards Conformance

ISO/IEC 14882:1998 -- International Standard for Information Systems -- Programming Language C++, Section 20.4.2



Previous fileTop of DocumentContentsIndex pageNext file

Copyright (c) 1994-2006 Rogue Wave Software, a Quovadx Division.
Licensed under the Apache License, Version 2.0.
Contact Rogue Wave about documentation or support issues. You can also seek help from other developers through the Apache stdcxx community (see below).

For more information on the Rogue Wave Standard C++ Library under open source, see Section 1.2 of the user's guide.