名稱空間
變體
操作

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

來自 cppreference.com
 
 
記憶體管理庫
(僅作說明*)
未初始化記憶體演算法
(C++17)
(C++17)
(C++17)
受約束的未初始化
記憶體演算法
C 庫

分配器
記憶體資源
垃圾回收支援
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
未初始化儲存
(直到 C++20*)
(直到 C++20*)
顯式生命週期管理
 
 
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