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
64 #pragma GCC diagnostic push
65 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
71 template <
class _OutputIterator,
class _Tp>
73 :
public iterator<output_iterator_tag, void, void, void, void>
76 _OutputIterator _M_iter;
87 operator=(
const _Tp& __element)
93 #if __cplusplus >= 201103L
97 operator=(_Tp&& __element)
121 _OutputIterator base()
const {
return _M_iter; }
123 #pragma GCC diagnostic pop
125 _GLIBCXX_END_NAMESPACE_VERSION
constexpr complex< _Tp > operator*(const complex< _Tp > &__x, const complex< _Tp > &__y)
Return new complex value x times y.
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.
constexpr void _Construct(_Tp *__p, _Args &&... __args)