- memory[meta header]
- std[meta namespace]
- allocator[meta class]
- function[meta id-type]
allocator& operator=(const allocator&); // (1) C++03 (暗黙定義)
allocator& operator=(const allocator&) = default; // (1) C++11
constexpr allocator& operator=(const allocator&) = default; // (1) C++20
代入する。
代入後の*this
を返す。