|
Sequoia
|
Public Types | |
| using | value_type = T |
| using | allocator_type = Allocator |
Public Member Functions | |
| move_only_inefficient_move (std::initializer_list< T > list) | |
| move_only_inefficient_move (std::initializer_list< T > list, const allocator_type &a) | |
| move_only_inefficient_move (const allocator_type &a) | |
| move_only_inefficient_move (const move_only_inefficient_move &)=delete | |
| move_only_inefficient_move (move_only_inefficient_move &&other) | |
| move_only_inefficient_move (move_only_inefficient_move &&other, const allocator_type &a) | |
| move_only_inefficient_move & | operator= (const move_only_inefficient_move &)=delete |
| move_only_inefficient_move & | operator= (move_only_inefficient_move &&)=default |
| void | swap (move_only_inefficient_move &other) noexcept(noexcept(std::ranges::swap(this->x, other.x))) |
Public Attributes | |
| std::vector< T, Allocator > | x {} |
Friends | |
| void | swap (move_only_inefficient_move &lhs, move_only_inefficient_move &rhs) noexcept(noexcept(lhs.swap(rhs))) |
| bool | operator== (const move_only_inefficient_move &lhs, const move_only_inefficient_move &rhs) noexcept |
| bool | operator!= (const move_only_inefficient_move &lhs, const move_only_inefficient_move &rhs) noexcept |
| template<class Stream > | |
| Stream & | operator<< (Stream &s, const move_only_inefficient_move &b) |