56 #ifndef _STL_RAW_STORAGE_ITERATOR_H
57 #define _STL_RAW_STORAGE_ITERATOR_H 1
59 namespace std _GLIBCXX_VISIBILITY(default)
61 _GLIBCXX_BEGIN_NAMESPACE_VERSION
67 template <
class _OutputIterator,
class _Tp>
69 :
public iterator<output_iterator_tag, void, void, void, void>
72 _OutputIterator _M_iter;
80 operator*() {
return *
this; }
83 operator=(
const _Tp& __element)
89 #if __cplusplus >= 201103L
93 operator=(_Tp&& __element)
117 _OutputIterator base()
const {
return _M_iter; }
120 _GLIBCXX_END_NAMESPACE_VERSION
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
ISO C++ entities toplevel namespace is std.
void _Construct(_Tp *__p, _Args &&... __args)