AnySet Documentation
|
AnySet is an associative container that contains a set of unique objects of any constructible type. Search, insertion, and removal have average constant-time complexity. Internally, the elements are not sorted in any particular order, but organized into buckets. Which bucket an element is placed into depends entirely on the hash of its value. This allows fast access to individual elements, since once a hash is computed, it refers to the exact bucket the element is placed into.
Container elements may not be modified (even by non const iterators) since modification could change an element's hash and corrupt the container.
AnySet meets the requirements of Container, AllocatorAwareContainer, and UnorderedAssociativeContainer.
HashFn | - The type of the function object to use when computing the hash codes of elements. |
KeyEqual | - The type of the function object to use when comparing elements for equality. |
Allocator | - The type of the allocator to use when allocating the internal bucket table. |
value_type
for AnySet instances. #include <AnySet.h>
Classes | |
struct | const_iterator |
Forward iterator type returned from const operations on AnySet instances. More... | |
struct | iterator |
Forward iterator type returned from non-const operations on AnySet instances. More... | |
Public Types | |
using | value_type = AnyValue< HashFn, KeyEqual > |
AnyValue. | |
using | size_type = typename vector_type::size_type |
Size type. | |
using | difference_type = typename vector_type::difference_type |
Difference type. | |
using | key_equal = KeyEqual |
Key equality comparator type. | |
using | hasher = HashFn |
Hash function type. | |
using | allocator_type = Allocator |
Allocator type. | |
using | key_type = value_type |
AnyValue. Here for consistency with std::unordered_set. | |
using | reference = value_type & |
Reference to AnyValue. | |
using | const_reference = const value_type & |
Reference to const AnyValue. | |
using | pointer = value_type * |
Pointer to AnyValue. | |
using | const_pointer = const value_type * |
Pointer to const AnyValue. | |
using | node_handle = std::unique_ptr< value_type > |
using | local_iterator = BucketIterator< false > |
Iterator type suitable for traversal through an individual bucket. | |
using | const_local_iterator = BucketIterator< true > |
Const iterator type suitable for traversal through an individual bucket. | |
Public Member Functions | |
void | _assert_invariants (bool check_load_factor=false) const |
Constructors | |
AnySet () | |
Constructs an empty set with 1 bucket. Sets max_load_factor() to 1.0. | |
AnySet (size_type bucket_count, const HashFn &hash=HashFn(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator()) | |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0. More... | |
AnySet (size_type bucket_count, const Allocator &alloc) | |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0. More... | |
AnySet (size_type bucket_count, const HashFn &hash, const Allocator &alloc) | |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0. More... | |
template<class InputIt > | |
AnySet (InputIt first, InputIt last, size_type bucket_count=0, const HashFn &hash=HashFn(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator()) | |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted. More... | |
template<class InputIt > | |
AnySet (InputIt first, InputIt last, size_type bucket_count, const Allocator &alloc) | |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted. More... | |
template<class InputIt > | |
AnySet (InputIt first, InputIt last, size_type bucket_count, const HashFn &hash, const Allocator &alloc) | |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted. More... | |
AnySet (const AnySet &other, const Allocator &alloc) | |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well. More... | |
AnySet (const AnySet &other) | |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well. More... | |
AnySet (AnySet &&other, const Allocator &alloc) | |
Move constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well. More... | |
AnySet (AnySet &&other) | |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well. More... | |
template<class T > | |
AnySet (std::initializer_list< T > ilist, size_type bucket_count=0, const HashFn &hash=HashFn(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator()) | |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted. More... | |
template<class T > | |
AnySet (std::initializer_list< T > ilist, size_type bucket_count, const Allocator &alloc) | |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted. More... | |
template<class T > | |
AnySet (std::initializer_list< T > ilist, size_type bucket_count, const HashFn &hash, const Allocator &alloc) | |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted. More... | |
template<class ... T> | |
AnySet (std::tuple< T ... > &&tup, size_type bucket_count=2 *(sizeof...(T)), const HashFn &hash=HashFn(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator()) | |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted. More... | |
template<class ... T> | |
AnySet (std::tuple< T ... > &&tup, size_type bucket_count, const Allocator &alloc) | |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted. More... | |
template<class ... T> | |
AnySet (std::tuple< T ... > &&tup, size_type bucket_count, const HashFn &hash, const Allocator &alloc) | |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted. More... | |
Assignment | |
AnySet & | operator= (const AnySet &other) |
Copy assigns the contents of this AnySet instance from the contents of other. Copies the load factor, the predicate, the hash function, and allocator as well. More... | |
AnySet & | operator= (AnySet &&other) noexcept(std::is_nothrow_move_assignable_v< vector_type >) |
Move assigns the contents of this AnySet instance from the contents of other. Moves the load factor, the predicate, the hash function, and allocator as well. More... | |
template<class T > | |
AnySet & | operator= (std::initializer_list< T > ilist) |
Assigns the contents of this AnySet instance with the contents of ilist. More... | |
Iterators | |
const_iterator | cbegin () const |
Get a const_iterator to the first element in the set. More... | |
const_iterator | begin () const |
Get a const_iterator to the first element in the set. More... | |
iterator | begin () |
Get a iterator to the first element in the set. More... | |
const_iterator | cend () const |
Get a past-the-end const_iterator for this set. More... | |
const_iterator | end () const |
Get a past-the-end const_iterator for this set. More... | |
iterator | end () |
Get a past-the-end iterator for this set. More... | |
Capacity | |
bool | empty () const noexcept |
Checks if the set has no elements, i.e. whether begin() == end(). More... | |
size_type | size () const noexcept |
Gets the number of elements in the set, i.e. std::distance(begin(), end()). More... | |
size_type | max_size () const noexcept |
Get the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container. More... | |
Modifiers | |
void | clear () noexcept |
Removes all elements from the container. Invalidates any references, pointers, or iterators referring to contained elements. | |
template<class T , class ... Args> | |
std::pair< iterator, bool > | emplace (Args &&... args) |
Inserts a new element into the container constructed in-place with the given args if there is no element with the same type and value in the container. More... | |
template<class T , class ... Args> | |
std::pair< iterator, bool > | emplace_hint ([[maybe_unused]] const_iterator hint, Args &&... args) |
Inserts a new element into the container constructed in-place with the given args if there is no element with the same type and value in the container, using an iterator hint as a suggestion for where the new element should be placed. More... | |
template<class T > | |
std::pair< iterator, bool > | insert (T &&value) |
Inserts an element into the set, if the set doesn't already contain an element with an equivalent value and type. More... | |
template<class T > | |
std::pair< iterator, bool > | insert ([[maybe_unused]] const_iterator hint, T &&value) |
Inserts an element into the set, if the set doesn't already contain an element with an equivalent value and type. More... | |
template<class It , class = std::enable_if_t< std::is_copy_constructible_v<typename std::iterator_traits<It>::value_type> or std::is_rvalue_reference_v<decltype(*std::declval<It>())> >> | |
size_type | insert (It first, It last) |
Inserts elements from the range [first, last) that do not already exist in the set. If multiple elements in the range have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted. More... | |
template<class T , class U , class ... V> | |
std::bitset< 2ull+sizeof...(V)> | insert (T &&first, U &&second, V &&... args) |
Inserts args if they do not already exist in the set. If multiple values in args have the same type and have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted. More... | |
template<class T , class = std::enable_if_t<std::is_copy_constructible_v<T>>> | |
size_type | insert (std::initializer_list< T > ilist) |
Inserts elements from the list ilist that do not already exist in the set. If multiple elements in the list have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted. More... | |
iterator | erase (const_iterator pos) |
Remove the element at the position pointed to by pos from the set. More... | |
iterator | erase (const_iterator first, const_iterator last) |
Remove elements in the range [first , last ). More... | |
template<class T , class = std::enable_if_t<not (std::is_same_v<const_iterator, T> or std::is_same_v<iterator, T>)>> | |
size_type | erase (const T &value) |
Remove the element from the set whose type is the same type as value and whose value compares equal to value . More... | |
void | swap (AnySet &other) noexcept(std::is_nothrow_swappable_v< vector_type > and std::is_nothrow_swappable_v< pair_type >) |
Exchanges the contents of the set with those of other. Does not invoke any move, copy, or swap operations on individual elements. Additionally exchanges the hash functions, comparison functions, and max_load_factor()s of the sets. More... | |
AnySet & | update (const AnySet &other) |
Add copies of elements from other . More... | |
AnySet & | update (AnySet &&other) |
Moves elements from other into the set. More... | |
Lookup | |
template<class T > | |
size_type | count (const T &value) const |
Returns the number of elements with a value that have the same type as, and compare equal to the value , which is either 1 or 0 since AnySet does not allow duplicates. More... | |
template<class T > | |
const_iterator | find (const T &value) const |
Obtain a const_iterator to the element that has the same type as, and compares equal to the value . More... | |
template<class T > | |
iterator | find (const T &value) |
Obtain an iterator to the element that has the same type as, and compares equal to the value . More... | |
template<class T > | |
std::pair< const_iterator, const_iterator > | equal_range (const T &value) const |
Obtain a const_iterator range to the elements that have the same type as, and compares equal to the value . More... | |
template<class T > | |
std::pair< iterator, iterator > | equal_range (const T &value) |
Obtain an iterator range to the elements that have the same type as, and compares equal to the value . More... | |
bool | contains_value (const value_type &any_v) const |
Check if this contains the same value as another set. More... | |
bool | contains_value_eq (const value_type &any_v) const |
Check if this contains the same value as another set. More... | |
template<class T > | |
bool | contains (const T &value) const |
Check if this contains value . More... | |
template<class T > | |
bool | contains_eq (const T &value) const |
Check if this contains value . More... | |
Bucket Interface | |
const_local_iterator | cbegin (size_type buck) const |
Get a const_local_iterator to the first element in the bucket at index buck . More... | |
const_local_iterator | begin (size_type buck) const |
Get a const_local_iterator to the first element in the bucket at index buck . More... | |
local_iterator | begin (size_type buck) |
Get a local_iterator to the first element in the bucket at index buck . More... | |
const_local_iterator | cend (size_type buck) const |
Get a const_local_iterator to the element one past the least element in the bucket at index buck . More... | |
const_local_iterator | end (size_type buck) const |
Get a const_local_iterator to the element one past the least element in the bucket at index buck . More... | |
local_iterator | end (size_type buck) |
Get a local_iterator to the element one past the least element in the bucket at index buck . More... | |
size_type | bucket_count () const noexcept |
Get the number of buckets in the set. More... | |
size_type | max_bucket_count () const noexcept |
Get the maximum possible number of buckets in the set. More... | |
size_type | bucket_size (size_type buck) const |
Get the number of elements in the bucket at index buck . More... | |
template<class T > | |
size_type | bucket (const T &value) const |
Get the bucket index of value . More... | |
Hash Policy | |
void | max_load_factor (float f) |
Set the maximum possible number of buckets in the set. More... | |
float | max_load_factor () const noexcept |
Get the maximum allowable load factor for the set. More... | |
float | load_factor () const noexcept |
Get the load factor for the set. More... | |
void | rehash (size_type nbuckets) |
Sets the number of buckets to the smallest possible value that is at least as large as nbuckets and rehashes the container, i.e. puts the elements into appropriate buckets considering that total number of buckets has changed. If the new number of buckets makes load factor more than maximum load factor, then the new number of buckets is at least size() / max_load_factor(). More... | |
void | reserve (size_type count) |
Sets the number of buckets to the number needed to accomodate at least count elements without exceeding the maximum load factor and rehashes the container, i.e. puts the elements into appropriate buckets considering that total number of buckets has changed. Effectively calls rehash(std::ceil(count / max_load_factor())). More... | |
Observers | |
hasher | hash_function () const |
Get a copy of the hash function. More... | |
key_equal | key_eq () const |
Get a copy of the equality comparison function. More... | |
allocator_type | get_allocator () const |
Get a copy of the allocator. More... | |
Node Interface | |
std::pair< node_handle, iterator > | pop (const_iterator pos_) |
Remove and return the element at the position pointed to by pos from the set. More... | |
node_handle | dup (const_iterator pos) const |
Copy and return the element at the position pointed to by pos . More... | |
std::pair< iterator, node_handle > | push (node_handle &&node) |
Insert the value pointed to by node to this . More... | |
std::tuple< iterator, iterator, bool > | splice (AnySet &other, const_iterator pos) |
Moves the element at position pos from other into this . More... | |
std::pair< iterator, iterator > | splice (AnySet &other, const_iterator first, const_iterator last) |
Moves the elements in the range [first, last) from other into this . More... | |
template<class T , class = std::enable_if_t<std::is_same_v<std::decay_t<T>, self_type>>> | |
auto | splice_or_copy (T &&other, const_iterator first, const_iterator last) -> std::pair< decltype(other.begin()), decltype(other.begin())> |
Copies or moves the elements in the range [first, last) from other into this . More... | |
template<class T , class = std::enable_if_t<std::is_same_v<std::decay_t<T>, self_type>>> | |
auto | splice_or_copy (T &&other, const_iterator pos) -> std::tuple< iterator, decltype(other.begin()), bool > |
Copies or moves the element at position pos from other into this . More... | |
Friends | |
Non-Member functions | |
void | swap (AnySet &left, AnySet &right) |
Calls left.swap(right). More... | |
bool | operator== (const AnySet &left, const AnySet &right) |
Compare the contents of two sets. More... | |
bool | operator!= (const AnySet &left, const AnySet &right) |
Compare the contents of two sets. More... | |
Related Functions | |
(Note that these are not member functions.) | |
template<class HashFn = te::AnyHash, class KeyEqual = std::equal_to<>, class Allocator = std::allocator<te::AnyValue<HashFn, KeyEqual>>, class ... Elements> | |
te::AnySet< HashFn, KeyEqual, Allocator > | make_anyset (Elements &&... elements) |
Helper function for creating an AnySet instance from a heterogeneous sequence of objects. More... | |
using te::AnySet< HashFn, KeyEqual, Allocator >::node_handle = std::unique_ptr<value_type> |
Node type to allow elements to persist after being removed, and for splicing between AnySet instances.
|
inlineexplicit |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0.
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
equal | - Equality comparison function to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0.
bucket_count | - Minimum number of buckets to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an empty AnySet instance. Sets max_load_factor() to 1.0.
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted.
InputIt | - Input iterator type. |
first | - Iterator to the first element in the range. |
last | - Iterator one position past the last element in the range. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
equal | - Equality comparison function to initialize the set with |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted.
InputIt | - Input iterator type. |
first | - Iterator to the first element in the range. |
last | - Iterator one position past the last element in the range. |
bucket_count | - Minimum number of buckets to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet instance from the range [first, last). Sets max_load_factor() to 1.0. If multiple elements in the range compare equivalent, only the first encountered is inserted.
InputIt | - Input iterator type. |
first | - Iterator to the first element in the range. |
last | - Iterator one position past the last element in the range. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well.
other | - The set whose contents will be copied. |
alloc | - Allocator to initialize the set with. |
|
inline |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well.
other | - The set whose contents will be copied. |
|
inline |
Move constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well.
other | - The set whose contents will be copied. |
alloc | - Allocator to initialize the set with. |
|
inline |
Copy constructs an AnySet instance from other. Constructs the set with the copy of the contents of other. Copies the load factor, the predicate, and the hash function as well.
other | - The set whose contents will be copied. |
|
inline |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted.
T | - Type of the elements in the initializer list which will be added to the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
equal | - Equality comparison function to initialize the set with |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted.
T | - Type of the elements in the initializer list which will be added to the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet with the contents of the initializer list ilist. Same as AnySet(init.begin(), init.end()). Sets max_load_factor() to 1.0. If multiple elements in the list compare equivalent, only the first encountered is inserted.
T | - Type of the elements in the initializer list which will be added to the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted.
T | - Parameter pack types of the tuple elements that will be used to initialize the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
equal | - Equality comparison function to initialize the set with |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted.
T | - Parameter pack types of the tuple elements that will be used to initialize the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Construct an AnySet with the contents of the tuple tup. Sets max_load_factor() to 1.0. If multiple elements in the tuple have the same type and compare equivalent,only the first encountered is inserted.
T | - Parameter pack types of the tuple elements that will be used to initialize the set. |
ilist | - Initializer list to initialize the elements of the set with. |
bucket_count | - Minimum number of buckets to initialize the set with. |
hash | - Hash function to initialize the set with. |
alloc | - Allocator to initialize the set with. |
|
inline |
Get a const_iterator to the first element in the set.
|
inline |
Get a iterator to the first element in the set.
|
inline |
Get a const_local_iterator to the first element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Get a local_iterator to the first element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Get the bucket index of value
.
value | - Value whose bucket is to be returned. |
value
belongs.
|
inlinenoexcept |
Get the number of buckets in the set.
|
inline |
Get the number of elements in the bucket at index buck
.
buck | - Index of the bucket. |
|
inline |
Get a const_iterator to the first element in the set.
|
inline |
Get a const_local_iterator to the first element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Get a past-the-end const_iterator for this set.
|
inline |
Get a const_local_iterator to the element one past the least element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Check if this
contains value
.
value | - Value to search for. |
values's
type and whose value compares equal to value
using the KeyEqual comparator.
|
inline |
Check if this
contains value
.
value | - Value to search for. |
value's
type and whose value compares equal to value
using operator==().
|
inline |
Check if this
contains the same value as another set.
any_v | - AnyValue<Hash, KeyEqual> instance to search for. |
any_v's
value's type and whose value compares equal to the value of any_v
using the KeyEqual comparator.
|
inline |
Check if this
contains the same value as another set.
any_v | - AnyValue<Hash, KeyEqual> instance to search for. |
any_v's
value's type and whose value compares equal to the value of any_v
using operator==().
|
inline |
Returns the number of elements with a value that have the same type as, and compare equal to the value
, which is either 1 or 0 since AnySet does not allow duplicates.
value | - The value to obtain the count of in the set. |
|
inline |
Copy and return the element at the position pointed to by pos
.
pos | - Iterator to the element to pop. |
pos
is an instance of a type that does not satisfy CopyConstructible, this function throws a te::NoCopyConstructorError.
|
inline |
Inserts a new element into the container constructed in-place with the given args if there is no element with the same type and value in the container.
args | - Arguments to forward to the constructor of the element. |
T | - Type of the element to emplace. Must be a constructible non-reference type. |
Emplacement is the only way of inserting objects of non-movable, non-copyable types into an AnySet instance.
|
inline |
Inserts a new element into the container constructed in-place with the given args if there is no element with the same type and value in the container, using an iterator hint as a suggestion for where the new element should be placed.
T | - Type of the element to emplace. Must be a constructible non-reference type. |
args | - Arguments to forward to the constructor of the element. |
hint | - Iterator, used as a suggestion as to where to insert the new element. |
hint
argument is ignored and instead this function simply calls AnySet::emplace<T>(forward<Args>(args)...).AnySet follows the convention of STL node-based containers where emplacement is implemented by first allocating a new node, constructing the element within the allocated node, and then inserting. This means that AnySet::emplace() allocates a node even when insertion fails (i.e. the element already exists in the set).
Emplacement is the only way of inserting objects of non-movable, non-copyable types into an AnySet instance.
|
inlinenoexcept |
|
inline |
Get a past-the-end const_iterator for this set.
|
inline |
Get a past-the-end iterator for this set.
|
inline |
Get a const_local_iterator to the element one past the least element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Get a local_iterator to the element one past the least element in the bucket at index buck
.
buck | - Index of the bucket. |
buck
.
|
inline |
Obtain a const_iterator range to the elements that have the same type as, and compares equal to the value
.
value | - The value to obtain find. |
|
inline |
Obtain an iterator range to the elements that have the same type as, and compares equal to the value
.
value | - The value to obtain find. |
|
inline |
Remove the element at the position pointed to by pos
from the set.
pos | - Iterator to the element to erase. |
|
inline |
Remove elements in the range [first
, last
).
first | - Iterator to the first element in the range to erase. |
last | - Iterator one position past the last element to erase. |
last
parameter.
|
inline |
Remove the element from the set whose type is the same type as value
and whose value compares equal to value
.
value | - Value of the element to erase. |
|
inline |
Obtain a const_iterator to the element that has the same type as, and compares equal to the value
.
value | - The value to obtain find. |
|
inline |
Obtain an iterator to the element that has the same type as, and compares equal to the value
.
value | - The value to obtain find. |
|
inline |
Get a copy of the allocator.
|
inline |
Get a copy of the hash function.
|
inline |
Inserts an element into the set, if the set doesn't already contain an element with an equivalent value and type.
value | - element value to insert. |
|
inline |
Inserts an element into the set, if the set doesn't already contain an element with an equivalent value and type.
value | - element value to insert. |
hint
argument is ignored and instead this function simply calls AnySet::insert<T>(forward<T>(value)).
|
inline |
Inserts elements from the range [first, last) that do not already exist in the set. If multiple elements in the range have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted.
first | - Iterator to first element in the range. |
last | - Iterator one position past the last element in the range. |
first
and last
are not input iterators.
|
inline |
Inserts args
if they do not already exist in the set. If multiple values in args
have the same type and have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted.
first | - first value to insert into the set. |
second | - second value to insert into the set. |
args | - subsequent values to insert into the set. |
true
iff the ith argument was successfully inserted.
|
inline |
Inserts elements from the list ilist
that do not already exist in the set. If multiple elements in the list have values that compare equivalent, and there is no such element already in the set, only the first encountered is inserted.
ilist | - Initializer list of elements to insert into the set. |
|
inline |
Get a copy of the equality comparison function.
|
inlinenoexcept |
Get the load factor for the set.
|
inlinenoexcept |
Get the maximum possible number of buckets in the set.
|
inline |
Set the maximum possible number of buckets in the set.
f | - The new load factor. Must be a positive number. |
|
inlinenoexcept |
Get the maximum allowable load factor for the set.
|
inlinenoexcept |
Get the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container.
|
inline |
Copy assigns the contents of this AnySet instance from the contents of other. Copies the load factor, the predicate, the hash function, and allocator as well.
other | - The set whose contents will be copied. |
te::NoCopyConstructorError | if other contains an element of non-copy-constructible type. |
|
inlinenoexcept |
Move assigns the contents of this AnySet instance from the contents of other. Moves the load factor, the predicate, the hash function, and allocator as well.
other | - The set whose contents will be moved. |
|
inline |
Assigns the contents of this AnySet instance with the contents of ilist.
ilist | - The initializer list whose contents will be copied. |
|
inline |
Remove and return the element at the position pointed to by pos
from the set.
pos | - Iterator to the element to pop. |
|
inline |
Insert the value pointed to by node
to this
.
node | - node_handle pointing to the element to add. |
node
if it was unsuccessful. In otherwords, the caller gets the node back only if it couldn't be inserted.
|
inline |
Sets the number of buckets to the smallest possible value that is at least as large as nbuckets
and rehashes the container, i.e. puts the elements into appropriate buckets considering that total number of buckets has changed. If the new number of buckets makes load factor more than maximum load factor, then the new number of buckets is at least size() / max_load_factor().
nbuckets | - The new number of buckets in the container after rehashing. |
|
inline |
Sets the number of buckets to the number needed to accomodate at least count
elements without exceeding the maximum load factor and rehashes the container, i.e. puts the elements into appropriate buckets considering that total number of buckets has changed. Effectively calls rehash(std::ceil(count / max_load_factor())).
count | - The number of elements to reserve space for. |
|
inlinenoexcept |
Gets the number of elements in the set, i.e. std::distance(begin(), end()).
|
inline |
Moves the element at position pos
from other
into this
.
other | - The set to move the element from. |
pos | - Iterator to the element to move. |
this
where the element was inserted or the element that prevented the insertion, whose second member is an iterator to the position in other
of the element after the element at position pos
, and whose third member is a bool indicating whether the move occurred.other
into this
.this
and other
are unmodified. (conditional rollback semantics)
|
inline |
Moves the elements in the range [first, last) from other
into this
.
other | - The set to move the element from. |
first | - Iterator to the first element to move. |
last | - Iterator to the element after the last element to move. |
other
, that were not moved into this
.other
into this
.this
and other
are unmodified. (conditional rollback semantics)
|
inline |
Copies or moves the elements in the range [first, last) from other
into this
.
Elements are only moved from other
if other
is an rvalue reference to non-const. If other
is a reference to const AnySet, then elements are copied.
other | - The set to move the element from. |
first | - Iterator to the first element to move. |
last | - Iterator to the element after the last element to move. |
other
, that were not moved into this
. If other
is not an rvalue, no elements are moved and thus the returned range is simple [first, last).other
into this
.this
and other
are unmodified. (conditional rollback semantics)other
is const and any value in the range [first
, last
) is an instance of a type that does not satisfy CopyConstructible, this function throws a te::NoCopyConstructorError. If this occurs, only the elements preceding that value will have been added to this
.
|
inline |
Copies or moves the element at position pos
from other
into this
.
Elements are only moved from other
if other
is an rvalue reference to non-const. If other
is a reference to const AnySet, then elements are copied.
other | - The set to copy or move the element from. |
pos | - Iterator to the element to move. |
this
where the element was inserted or the element that prevented the insertion, whose second member is an iterator (or const_iterator, if other
is const) to the position in other
of the element after the element at position pos
, and whose third member is a bool indicating whether the copy/move occurred.other
is a non-const rvalue. In that case, the element is moved by splicing an internal node object from other
into this
.this
and other
are unmodified. (conditional rollback semantics)other
is const and the value at position pos
is an instance of a type that does not satisfy CopyConstructible, then this function throws a te::NoCopyConstructorError. If this occurs, this
and other
are unmodified. (conditional rollback semantics)
|
inlinenoexcept |
Exchanges the contents of the set with those of other. Does not invoke any move, copy, or swap operations on individual elements. Additionally exchanges the hash functions, comparison functions, and max_load_factor()s of the sets.
other | - The set to exchange contents with. |
|
inline |
Add copies of elements from other
.
other | - Set whose contents are to be added to the given set. |
other
contains an element whose type does not satisfy CopyConstructible, this function throws a te::NoCopyConstructorError.this
will be only partially updated.
|
inline |
Moves elements from other
into the set.
other | - Set whose contents are to be moved to the given set. |
other
into this
.this
will be only partially updated and other
will be missing any elements that added to this
.other
may point to into this
after the call to this function. Whether or not a particular iterator is past-the-end, and in which set it is past-the-end, may be changed.this
from other
.
|
related |
Helper function for creating an AnySet instance from a heterogeneous sequence of objects.
HashFn | - The type of the function object for the AnySet instance created. (optional) |
KeyEqual | - The type of the function object for the AnySet instance created. (optional) |
Allocator | - The type of the allocator for the AnySet instance created. (optional) |
elements | - Parameter pack of values to initialize the set's contents with. |
|
friend |
Compare the contents of two sets.
left | - Set whose contents are to be swapped with right . |
right | - Set whose contents are to be swapped with left . |
left
is contained in right
and vice-versa, using operator== to test for element equality, otherwise true.
|
friend |
Compare the contents of two sets.
left | - Set whose contents are to be swapped with right . |
right | - Set whose contents are to be swapped with left . |
left
is contained in right
and vice-versa, using operator== to test for element equality, otherwise false.
|
friend |
Calls left.swap(right).
left | - Set whose contents are to be swapped with right . |
right | - Set whose contents are to be swapped with left . |