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
を返す。