|
|
constexpr | BasicInlineQueue (ConstexprTag constexpr_tag) noexcept |
| |
|
| BasicInlineQueue (size_type count, const_reference value) |
| |
|
| BasicInlineQueue (size_type count) |
| |
|
template<typename InputIterator , typename = containers::internal::EnableIfInputIterator<InputIterator>> |
| | BasicInlineQueue (InputIterator start, InputIterator finish) |
| |
|
| BasicInlineQueue (const std::initializer_list< value_type > &list) |
| |
|
| BasicInlineQueue (const BasicInlineQueue &other) |
| | Copy constructs for matching capacity.
|
| |
| template<size_t kOtherCapacity> |
| | BasicInlineQueue (const BasicInlineQueue< ValueType, SizeType, kOtherCapacity > &other) |
| |
|
| BasicInlineQueue (BasicInlineQueue &&other) |
| | Move constructs for matching capacity.
|
| |
| template<size_t kOtherCapacity> |
| | BasicInlineQueue (BasicInlineQueue< ValueType, SizeType, kOtherCapacity > &&other) |
| |
|
template<typename T , typename = containers::internal::EnableIfIterable<T>> |
| | BasicInlineQueue (const T &other) |
| |
|
BasicInlineQueue & | operator= (const std::initializer_list< value_type > &list) |
| |
|
BasicInlineQueue & | operator= (const BasicInlineQueue &other) |
| | Copy assigns from matching capacity.
|
| |
| template<size_t kOtherCapacity> |
| BasicInlineQueue & | operator= (const BasicInlineQueue< ValueType, SizeType, kOtherCapacity > &other) |
| |
|
BasicInlineQueue & | operator= (BasicInlineQueue &&other) |
| | Move assigns from matching capacity.
|
| |
| template<size_t kOtherCapacity> |
| BasicInlineQueue & | operator= (BasicInlineQueue< ValueType, SizeType, kOtherCapacity > &&other) |
| |
|
template<typename T , typename = containers::internal::EnableIfIterable<T>> |
| BasicInlineQueue & | operator= (const T &other) |
| |