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