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