|
template<typename UAlloc> |
constexpr bool | move_assign_alloc (UAlloc &&rhs, typename std::enable_if_t< std::allocator_traits< std::remove_reference_t< UAlloc > >::propagate_on_container_move_assignment::value > *=nullptr) noexcept(is_pocma_or_is_always_equal< UAlloc >::value) |
|
template<typename UAlloc> |
constexpr bool | move_assign_alloc (UAlloc &&rhs, typename std::enable_if_t< !std::allocator_traits< std::remove_reference_t< UAlloc > >::propagate_on_container_move_assignment::value > *=nullptr) noexcept(is_pocma_or_is_always_equal< UAlloc >::value) |
|
template<typename UAlloc> |
constexpr bool | copy_assign_alloc (const UAlloc &rhs, typename std::enable_if_t< std::allocator_traits< UAlloc >::propagate_on_container_copy_assignment::value > *=nullptr) noexcept |
|
template<typename UAlloc> |
constexpr bool | copy_assign_alloc (const UAlloc &rhs, typename std::enable_if_t<!std::allocator_traits< UAlloc >::propagate_on_container_copy_assignment::value > *=nullptr) noexcept |
|
constexpr void | copy_assign_from (const VariableLengthArrayBase &rhs, const size_type rhs_max_size) |
|
template<typename UAlloc> |
constexpr void | move_assign_from (VariableLengthArrayBase &&rhs, const size_type rhs_max_size, typename std::enable_if_t< is_pocma_or_is_always_equal< UAlloc >::value > *=nullptr) noexcept |
|
template<typename UAlloc> |
constexpr void | move_assign_from (VariableLengthArrayBase &&rhs, const size_type rhs_max_size, typename std::enable_if_t<!is_pocma_or_is_always_equal< UAlloc >::value > *=nullptr) |
|
constexpr void | reserve (const size_type desired_capacity, const size_type max_size) |
|
template<typename... Args> |
constexpr void | resize (size_type new_size, const size_type max_size, Args &&... args) |
|
constexpr void | shrink_to_fit () |
|
constexpr bool | grow (const size_type max_size) |
|
constexpr | VariableLengthArrayBase (const allocator_type &alloc, value_type *data, size_type initial_capacity, size_type size, size_type max_size_max) noexcept(std::is_nothrow_copy_constructible< allocator_type >::value) |
|
constexpr | VariableLengthArrayBase (const VariableLengthArrayBase &rhs, const allocator_type &rhs_alloc) noexcept(std::is_nothrow_copy_constructible< allocator_type >::value) |
|
constexpr | VariableLengthArrayBase (VariableLengthArrayBase &&rhs) noexcept |
|
template<typename UAlloc> |
constexpr | VariableLengthArrayBase (VariableLengthArrayBase &&rhs, const UAlloc &rhs_alloc, typename std::enable_if_t< is_pocma_or_is_always_equal< UAlloc >::value > *=nullptr) noexcept |
|
template<typename UAlloc> |
constexpr | VariableLengthArrayBase (VariableLengthArrayBase &&rhs, const UAlloc &rhs_alloc, typename std::enable_if_t<!is_pocma_or_is_always_equal< UAlloc >::value > *=nullptr) noexcept |
|
|
template<typename UAllocator> |
static constexpr std::enable_if_t< is_detected< reallocate_operation, UAllocator >::value, value_type > * | reallocate (value_type *data, UAllocator &alloc, std::size_t old_object_count, std::size_t new_object_count) |
|
template<typename UAllocator> |
static constexpr std::enable_if_t<!is_detected< reallocate_operation, UAllocator >::value, value_type > * | reallocate (value_type *data, UAllocator &alloc, std::size_t old_object_count, std::size_t new_object_count) |
|
template<typename U> |
static constexpr void | fast_destroy (U *const src, const size_type src_size_count, typename std::enable_if_t< std::is_trivially_destructible< U >::value > *=nullptr) noexcept |
|
template<typename U> |
static constexpr void | fast_destroy (U *const src, const size_type src_size_count, typename std::enable_if_t<!std::is_trivially_destructible< U >::value > *=nullptr) noexcept(std::is_nothrow_destructible< U >::value) |
|
template<typename U> |
static constexpr void | fast_deallocate (U *const src, const size_type src_size_count, const size_type src_capacity_count, allocator_type &alloc, typename std::enable_if_t< std::is_trivially_destructible< U >::value > *=nullptr) |
|
template<typename U> |
static constexpr void | fast_deallocate (U *const src, const size_type src_size_count, const size_type src_capacity_count, allocator_type &alloc, typename std::enable_if_t<!std::is_trivially_destructible< U >::value > *=nullptr) |
|
template<typename InputIt> |
static constexpr size_type | fast_copy_assign (value_type *dst, size_type dst_capacity_count, InputIt src) noexcept(noexcept(std::is_nothrow_assignable< value_type, std::remove_pointer_t< InputIt > >::value)) |
|
template<typename InputIt> |
static constexpr size_type | fast_copy_assign (value_type *dst, size_type dst_capacity_count, InputIt src, size_type src_len_count) noexcept(noexcept(std::is_nothrow_assignable< value_type, std::remove_pointer_t< InputIt > >::value)) |
|
template<typename InputIt> |
static constexpr size_type | fast_copy_construct (value_type *const dst, size_type dst_capacity_count, const InputIt src, size_type src_len_count, allocator_type &alloc, typename std::enable_if_t< is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) noexcept |
|
template<typename InputIt> |
static constexpr size_type | fast_copy_construct (value_type *const dst, size_type dst_capacity_count, const InputIt src, size_type src_len_count, allocator_type &alloc, typename std::enable_if_t< !is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) noexcept(noexcept(std::allocator_traits< allocator_type >::construct(std::declval< std::add_lvalue_reference_t< allocator_type > >(), std::declval< std::add_pointer_t< value_type > >(), std::declval< std::add_lvalue_reference_t< decltype(std::declval< const InputIt >()[0])> >()))) |
|
template<typename InputIt> |
static constexpr size_type | fast_forward_construct (value_type *const dst, size_type dst_capacity_count, InputIt src, size_type src_len_count, allocator_type &alloc, typename std::enable_if_t< is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) |
|
template<typename InputIt> |
static constexpr size_type | fast_forward_construct (value_type *const dst, size_type dst_capacity_count, InputIt src, size_type src_len_count, allocator_type &alloc, typename std::enable_if_t< !is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) |
|
template<typename InputIt> |
static constexpr size_type | fast_forward_assign (value_type *const dst, size_type dst_capacity_count, InputIt src, size_type src_len_count, typename std::enable_if_t< is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) |
|
template<typename InputIt> |
static constexpr size_type | fast_forward_assign (value_type *const dst, size_type dst_capacity_count, InputIt src, size_type src_len_count, typename std::enable_if_t< !is_array_of_type_trivially_copyable< std::add_pointer_t< value_type >, InputIt >::value > *=nullptr) |
|