Loading...
Searching...
No Matches
Public Member Functions | List of all members
SparseSet< Type > Class Template Reference

Holds a set of primitive values, storing them as a set of ranges. More...

#include <juce_SparseSet.h>

Public Member Functions

 SparseSet ()=default
 
 SparseSet (const SparseSet &)=default
 
SparseSetoperator= (const SparseSet &)=default
 
 SparseSet (SparseSet &&other) noexcept
 
SparseSetoperator= (SparseSet &&other) noexcept
 
void clear ()
 Clears the set.
 
bool isEmpty () const noexcept
 Checks whether the set is empty.
 
Type size () const noexcept
 Returns the number of values in the set.
 
Type operator[] (Type index) const noexcept
 Returns one of the values in the set.
 
bool contains (Type valueToLookFor) const noexcept
 Checks whether a particular value is in the set.
 
int getNumRanges () const noexcept
 Returns the number of contiguous blocks of values.
 
Range< Type > getRange (int rangeIndex) const noexcept
 Returns one of the contiguous ranges of values stored.
 
Range< Type > getTotalRange () const noexcept
 Returns the range between the lowest and highest values in the set.
 
void addRange (Range< Type > range)
 Adds a range of contiguous values to the set.
 
void removeRange (Range< Type > rangeToRemove)
 Removes a range of values from the set.
 
void invertRange (Range< Type > range)
 Does an XOR of the values in a given range.
 
bool overlapsRange (Range< Type > range) const noexcept
 Checks whether any part of a given range overlaps any part of this set.
 
bool containsRange (Range< Type > range) const noexcept
 Checks whether the whole of a given range is contained within this one.
 
const Array< Range< Type > > & getRanges () const noexcept
 Returns the set as a list of ranges, which you may want to iterate over.
 
bool operator== (const SparseSet &other) const noexcept
 
bool operator!= (const SparseSet &other) const noexcept
 

Detailed Description

template<class Type>
class SparseSet< Type >

Holds a set of primitive values, storing them as a set of ranges.

This container acts like an array, but can efficiently hold large contiguous ranges of values. It's quite a specialised class, mostly useful for things like keeping the set of selected rows in a listbox.

The type used as a template parameter must be an integer type, such as int, short, int64, etc.

Constructor & Destructor Documentation

◆ SparseSet() [1/3]

template<class Type >
SparseSet< Type >::SparseSet ( )
default

◆ SparseSet() [2/3]

template<class Type >
SparseSet< Type >::SparseSet ( const SparseSet< Type > & )
default

◆ SparseSet() [3/3]

template<class Type >
SparseSet< Type >::SparseSet ( SparseSet< Type > && other)
noexcept

Member Function Documentation

◆ operator=() [1/2]

template<class Type >
SparseSet & SparseSet< Type >::operator= ( const SparseSet< Type > & )
default

◆ operator=() [2/2]

template<class Type >
SparseSet & SparseSet< Type >::operator= ( SparseSet< Type > && other)
noexcept

◆ clear()

template<class Type >
void SparseSet< Type >::clear ( )

◆ isEmpty()

template<class Type >
bool SparseSet< Type >::isEmpty ( ) const
noexcept

Checks whether the set is empty.

This is much quicker than using (size() == 0).

References Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::isEmpty().

◆ size()

template<class Type >
Type SparseSet< Type >::size ( ) const
noexcept

Returns the number of values in the set.

Because of the way the data is stored, this method can take longer if there are a lot of items in the set. Use isEmpty() for a quick test of whether there are any items.

◆ operator[]()

template<class Type >
Type SparseSet< Type >::operator[] ( Type index) const
noexcept

Returns one of the values in the set.

Parameters
indexthe index of the value to retrieve, in the range 0 to (size() - 1).
Returns
the value at this index, or 0 if it's out-of-range

References end().

◆ contains()

template<class Type >
bool SparseSet< Type >::contains ( Type valueToLookFor) const
noexcept

Checks whether a particular value is in the set.

◆ getNumRanges()

template<class Type >
int SparseSet< Type >::getNumRanges ( ) const
noexcept

Returns the number of contiguous blocks of values.

See also
getRange

References Array< ElementType, TypeOfCriticalSectionToUse, minimumAllocatedSize >::size().

◆ getRange()

template<class Type >
Range< Type > SparseSet< Type >::getRange ( int rangeIndex) const
noexcept

Returns one of the contiguous ranges of values stored.

Parameters
rangeIndexthe index of the range to look up, between 0 and (getNumRanges() - 1)
See also
getTotalRange

◆ getTotalRange()

template<class Type >
Range< Type > SparseSet< Type >::getTotalRange ( ) const
noexcept

◆ addRange()

template<class Type >
void SparseSet< Type >::addRange ( Range< Type > range)

◆ removeRange()

template<class Type >
void SparseSet< Type >::removeRange ( Range< Type > rangeToRemove)

◆ invertRange()

template<class Type >
void SparseSet< Type >::invertRange ( Range< Type > range)

Does an XOR of the values in a given range.

References SparseSet< Type >::addRange(), and SparseSet< Type >::removeRange().

◆ overlapsRange()

template<class Type >
bool SparseSet< Type >::overlapsRange ( Range< Type > range) const
noexcept

Checks whether any part of a given range overlaps any part of this set.

◆ containsRange()

template<class Type >
bool SparseSet< Type >::containsRange ( Range< Type > range) const
noexcept

Checks whether the whole of a given range is contained within this one.

◆ getRanges()

template<class Type >
const Array< Range< Type > > & SparseSet< Type >::getRanges ( ) const
noexcept

Returns the set as a list of ranges, which you may want to iterate over.

◆ operator==()

template<class Type >
bool SparseSet< Type >::operator== ( const SparseSet< Type > & other) const
noexcept

◆ operator!=()

template<class Type >
bool SparseSet< Type >::operator!= ( const SparseSet< Type > & other) const
noexcept

The documentation for this class was generated from the following file:
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram