A helper struct providing functions for managing sorted containers. More...
#include <juce_OrderedContainerHelpers.h>
Public Member Functions | |
| OrderedContainerHelpers ()=delete | |
Static Public Member Functions | |
| template<typename A , typename B , typename Less = std::less<>> | |
| static constexpr bool | equivalent (const A &a, const B &b, Less less={}) |
| Returns true if neither value compares less than the other. | |
| template<typename OrderedContainer , typename ValueType , typename Less = std::less<>> | |
| static void | insertOrAssign (OrderedContainer &container, const ValueType &valueToInsert, Less less={}) |
| If the container already contains a value equivalent to the valueToInsert, assigns the new value over the old one; otherwise, if no equivalent tag exists, inserts the new value preserving the sorted property of the container. | |
| template<typename OrderedContainer , typename ValueType , typename Less = std::less<>> | |
| static bool | remove (OrderedContainer &container, const ValueType &valueToRemove, Less less={}) |
| Removes a specific element from a sorted array, preserving order. | |
A helper struct providing functions for managing sorted containers.
These helper functions simplify common operations on containers that are kept in a sorted order.
@tags{Core}
|
delete |
|
inlinestaticconstexpr |
Returns true if neither value compares less than the other.
This is the same definition of equivalence as used by the std containers "set" and "map".
|
inlinestatic |
If the container already contains a value equivalent to the valueToInsert, assigns the new value over the old one; otherwise, if no equivalent tag exists, inserts the new value preserving the sorted property of the container.
|
inlinestatic |
Removes a specific element from a sorted array, preserving order.
Searches for an element in the container that compares equivalent to valueToRemove and erases it if present, preserving the sorted property of the container.
Returns true if the array was modified or false otherwise (i.e. the element was not removed).