template<typename OutputIterator, typename T>
class eastl::raw_storage_iterator< OutputIterator, T >
raw_storage_iterator
From the C++11 Standard, section 20.6.10 p1 raw_storage_iterator is provided to enable algorithms to store their results into uninitialized memory. The formal template parameter OutputIterator is required to have its operator* return an object for which operator& is defined and returns a pointer to T, and is also required to satisfy the requirements of an output iterator (24.2.4).