|
CoreComponents 3.0.0
A Modern C++ Toolkit
|
Multi-set data container. More...
#include <cc/MultiSet>
Public Types | |
| using | Item = T |
| Item type. | |
| using | Order = O |
| Search order. | |
Standard Iterators | |
| using | value_type = Item |
| Item value type. | |
| using | size_type = long |
| Type of the container capacity. | |
| using | const_iterator = Iterator<const BucketVector<Item>> |
| Readonly value iterator. | |
| using | const_reverse_iterator = ReverseIterator<const BucketVector<Item>> |
| Readonly reverse value iterator. | |
| const_iterator | begin () const |
| Return readonly iterator pointing to the first item (if any) | |
| const_iterator | cbegin () const |
| Return readonly iterator pointing to the first item (if any) | |
| const_iterator | end () const |
| Return readonly iterator pointing behind the last item | |
| const_iterator | cend () const |
| Return readonly iterator pointing behind the last item | |
| const_reverse_iterator | rbegin () const |
| Return readonly reverse iterator pointing to the last item (if any) | |
| const_reverse_iterator | crbegin () const |
| Return readonly reverse iterator pointing to the last item (if any) | |
| const_reverse_iterator | rend () const |
| Return reverse iterator pointing before the first item | |
| const_reverse_iterator | crend () const |
| Return reverse iterator pointing before the first item | |
Construction and Assignment | |
| MultiSet ()=default | |
| Construct an empty multi-set. | |
| MultiSet (const MultiSet &other)=default | |
| Construct a copy of other. | |
| MultiSet (std::initializer_list< Item > items) | |
| Construct with initial items. | |
| MultiSet (MultiSet &&other) | |
| Take over the right-side multi-set other. | |
| MultiSet & | operator= (const MultiSet &other)=default |
| Assign multi-set other. | |
| MultiSet & | operator= (MultiSet &&other) |
| Take over the right-side multi-set other. | |
| List< Item > | toList () const |
| Get corresponding list representation. | |
Item Access | |
| Locator | head () const |
| Get a locator pointing to the first item. | |
| Locator | tail () const |
| Get a locator pointing to the last item. | |
| Locator | from (long index) const |
| Get a locator pointing to the item at index. | |
| long | count () const |
| Get the number of items stored in the multi-set. | |
| long | size () const |
| Get the number of items stored in the multi-set. | |
| operator bool () const | |
| Check if this multi-set is non-empty. | |
| long | operator+ () const |
| Get the number of items stored in the multi-set. | |
| const Item & | at (Locator pos) const |
| Get constant reference to the item at position pos. | |
| const Item & | at (long index) const |
| Get constant reference to the item at index. | |
| template<class Modify > | |
| void | modifyAt (Locator pos, Modify modify) |
| Modify an item in place | |
| template<class Modify > | |
| void | modifyAt (long index, Modify modify) |
| Modify an item in place | |
| const Item & | operator[] (long index) const |
| Get constant reference to the item at index. | |
| const Item & | first () const |
| Get constant reference to first item. | |
| const Item & | last () const |
| Get constant reference to last item. | |
| bool | firstIs (const Item &item) const |
| Tell if item is the first item. | |
| bool | lastIs (const Item &item) const |
| Tell if item is the last item. | |
| const Item & | min () const |
| Get constant reference to the first item. | |
| const Item & | max () const |
| Get constant reference to the last item. | |
Multi-Set Operations | |
| template<class Search = FindFirst, class Pattern = Item> | |
| bool | find (const Pattern &pattern, Out< Locator > pos=None{}) const |
| Search for an item in the multi-set. | |
| template<class Pattern = Item> | |
| bool | contains (const Pattern &pattern) const |
| Convenience function to check if the set contains key. | |
| template<class Pattern > | |
| Locator | lowerBound (const Pattern &pattern) const |
| Convenience function to find the lower bound of a search range. | |
| template<class Pattern > | |
| Locator | upperBound (const Pattern &pattern) const |
| Convenience function to find the upper bound of a search range. | |
| void | insert (const Item &item) |
| Add item to the multi-set. | |
| long | remove (const Item &item) |
| Remove all matching items. | |
Positional Operations | |
| void | removeAt (Locator &pos) |
| Remove item at position pos (and advance pos to the next item) | |
| void | removeAt (long index) |
| Remove item at index. | |
Global Operations | |
| template<class F > | |
| void | forEach (F f) const |
| Call function f for each item. | |
| template<class F , class Pattern > | |
| void | forEachInRange (const Pattern &lower, const Pattern &upper, F f) const |
| Call function f for each item in range [lower, upper]. | |
| void | deplete () |
| Remove all items. | |
Comparism Operators | |
| template<class Other > | |
| bool | operator== (const Other &other) const |
| Equality operator. | |
Multi-set data container.
| T | Item type |
| O | Search order |
| using Item = T |
Item type.
| using Order = O |
Search order.
| using value_type = Item |
Item value type.
| using size_type = long |
Type of the container capacity.
| using const_iterator = Iterator<const BucketVector<Item>> |
Readonly value iterator.
| using const_reverse_iterator = ReverseIterator<const BucketVector<Item>> |
Readonly reverse value iterator.
|
default |
Construct an empty multi-set.
Construct a copy of other.
Construct with initial items.
Take over the right-side multi-set other.
|
default |
Assign multi-set other.
Take over the right-side multi-set other.
Get corresponding list representation.
| Locator head | ( | ) | const |
Get a locator pointing to the first item.
| Locator tail | ( | ) | const |
Get a locator pointing to the last item.
| Locator from | ( | long | index | ) | const |
Get a locator pointing to the item at index.
| long count | ( | ) | const |
Get the number of items stored in the multi-set.
| long size | ( | ) | const |
Get the number of items stored in the multi-set.
|
explicit |
Check if this multi-set is non-empty.
| long operator+ | ( | ) | const |
Get the number of items stored in the multi-set.
Get constant reference to the item at position pos.
| const Item & at | ( | long | index | ) | const |
Get constant reference to the item at index.
| void modifyAt | ( | Locator | pos, |
| Modify | modify ) |
Modify an item in place
| Modify | Function type (lambda or functor) |
| pos | Position of item to modify |
| modify | Function of type void(Item &) |
| void modifyAt | ( | long | index, |
| Modify | modify ) |
Modify an item in place
| Modify | Function type (lambda or functor) |
| index | Index of item to modify |
| modify | Function of type void(Item &) |
| const Item & operator[] | ( | long | index | ) | const |
Get constant reference to the item at index.
| const Item & first | ( | ) | const |
Get constant reference to first item.
| const Item & last | ( | ) | const |
Get constant reference to last item.
| bool firstIs | ( | const Item & | item | ) | const |
Tell if item is the first item.
| bool lastIs | ( | const Item & | item | ) | const |
Tell if item is the last item.
| const Item & min | ( | ) | const |
Get constant reference to the first item.
| const Item & max | ( | ) | const |
Get constant reference to the last item.
| bool contains | ( | const Pattern & | pattern | ) | const |
Convenience function to check if the set contains key.
| Pattern | Pattern type (must be comparable with Key) |
| pattern | Pattern to search for |
| Locator lowerBound | ( | const Pattern & | pattern | ) | const |
Convenience function to find the lower bound of a search range.
| Pattern | Pattern type (must be comparable with Key) |
| pattern | Pattern to search for |
| Locator upperBound | ( | const Pattern & | pattern | ) | const |
Convenience function to find the upper bound of a search range.
| Pattern | Pattern type (must be comparable with Key) |
| pattern | Pattern to search for |
| void insert | ( | const Item & | item | ) |
Add item to the multi-set.
| long remove | ( | const Item & | item | ) |
Remove all matching items.
| item | Item value to search for |
| void removeAt | ( | Locator & | pos | ) |
Remove item at position pos (and advance pos to the next item)
| void removeAt | ( | long | index | ) |
Remove item at index.
| void forEach | ( | F | f | ) | const |
Call function f for each item.
| F | Function type (lambda or functor) |
| f | Unary function which and gets called for each item |
| void forEachInRange | ( | const Pattern & | lower, |
| const Pattern & | upper, | ||
| F | f ) const |
Call function f for each item in range [lower, upper].
| F | Function type (lambda or functor) |
| Pattern | Pattern type (must be comparable with Key) |
| lower | Lower boundary |
| upper | Upper boundary |
| f | Unary function which gets called for each item |
| void deplete | ( | ) |
Remove all items.
| const_iterator begin | ( | ) | const |
Return readonly iterator pointing to the first item (if any)
| const_iterator cbegin | ( | ) | const |
Return readonly iterator pointing to the first item (if any)
| const_iterator end | ( | ) | const |
Return readonly iterator pointing behind the last item
| const_iterator cend | ( | ) | const |
Return readonly iterator pointing behind the last item
| const_reverse_iterator rbegin | ( | ) | const |
Return readonly reverse iterator pointing to the last item (if any)
| const_reverse_iterator crbegin | ( | ) | const |
Return readonly reverse iterator pointing to the last item (if any)
| const_reverse_iterator rend | ( | ) | const |
Return reverse iterator pointing before the first item
| const_reverse_iterator crend | ( | ) | const |
Return reverse iterator pointing before the first item