Namespaces
Variants

std::raw_storage_iterator<OutputIt,T>:: operator=

From cppreference.net
Memory management library
( exposition only* )
Allocators
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Memory resources
Uninitialized storage (until C++20)
( until C++20* )
( until C++20* )
( until C++20* )

Garbage collector support (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
raw_storage_iterator & operator = ( const T & el ) ;
(1)
raw_storage_iterator & operator = ( T && el ) ;
(2) (C++17以降)
1) イテレータが指す位置に el から値を構築します。
2) イテレータが指す位置に std :: move ( el ) から値を構築します。

パラメータ

el - コピーまたは移動元の値

戻り値

* this