Lines Matching refs:noexcept
365 …concurrent_unordered_base& operator=( concurrent_unordered_base&& other ) noexcept(unordered_segme… in noexcept() function
387 …void swap( concurrent_unordered_base& other ) noexcept(unordered_segment_table::is_noexcept_swap) { in swap()
395 allocator_type get_allocator() const noexcept { return my_segments.get_allocator(); } in get_allocator()
397 iterator begin() noexcept { return iterator(first_value_node(&my_head)); } in begin()
398 …const_iterator begin() const noexcept { return const_iterator(first_value_node(const_cast<node_ptr… in begin()
399 …const_iterator cbegin() const noexcept { return const_iterator(first_value_node(const_cast<node_pt… in cbegin()
401 iterator end() noexcept { return iterator(nullptr); } in end()
402 const_iterator end() const noexcept { return const_iterator(nullptr); } in end()
403 const_iterator cend() const noexcept { return const_iterator(nullptr); } in cend()
405 __TBB_nodiscard bool empty() const noexcept { return size() == 0; } in empty()
406 size_type size() const noexcept { return my_size.load(std::memory_order_relaxed); } in size()
407 size_type max_size() const noexcept { return allocator_traits_type::max_size(get_allocator()); } in max_size()
409 void clear() noexcept { in clear()