std::scoped_allocator_adaptor<OuterAlloc,InnerAlloc...>::operator=
From cppreference.com
< cpp | memory | scoped allocator adaptor
| ヘッダ <scoped_allocator> で定義 |
||
| scoped_allocator_adaptor& operator=( const scoped_allocator_adaptor& other ); |
(1) | |
| scoped_allocator_adaptor& operator=( scoped_allocator_adaptor&& other ); |
(2) | |
1) 明示的にデフォルト設定されたコピー代入演算子。基底クラス(
OuterAlloc、外側のallocator)とすべての内側のallocatorをコピー代入します。2) 明示的にデフォルト設定されたムーブ代入演算子。基底クラス(
OuterAlloc、外側のallocator)とすべての内側のallocatorをムーブ代入します。[編集] パラメータ
| その他 | - | 別のstd::scoped_allocator_adaptor |