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