std::raw_storage_iterator
From cppreference.com
Defined in header <memory>
|
||
template< class OutputIterator, class T > class raw_storage_iterator |
||
The output iterator std::raw_storage_iterator makes it possible for standard algorithms to store results in uninitialized memory. Whenever the algorithm writes an object of type T to the dereferenced iterator, the object is copy-constructed into the location in the uninitialized storage pointed to by the iterator. The template parameter OutputIterator is any type that satisfied output iterator requirements and has operator* defined to return an object, for which operator& returns an object of type T*. Usually, the type T* is used as OutputIterator.
Contents |
[edit] Member functions
creates a new raw_storage_iterator (public member function) | |
returns a reference to this raw_storage_iterator (public member function) | |
copy-constructs an object at the pointed-to location in the buffer (public member function) | |
advances the iterator (public member function) |
Inherited from std::iterator
Member types
Member type | Definition |
value_type | void |
difference_type | void |
pointer | void |
reference | void |
iterator_category | std::output_iterator_tag |
[edit] Example
#include <iostream> #include <string> #include <memory> #include <algorithm> int main() { const std::string s[] = {"This", "is", "a", "test", "."}; std::string* p = std::get_temporary_buffer<std::string>(5).first; std::copy(std::begin(s), std::end(s), std::raw_storage_iterator<std::string*, std::string>(p)); for(std::string* i = p; i!=p+5; ++i) { std::cout << *i << '\n'; i->~basic_string<char>(); } std::return_temporary_buffer(p); }
Output:
This is a test .
[edit] See also
(C++11) |
provides information about allocator types (class template) |
(C++11) |
implements multi-level allocator for multi-level containers (class template) |
(C++11) |
checks if the specified type supports uses-allocator construction (class template) |