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