A general-purpose range object, that simply represents any linear range with a start and end point. More...
#include <juce_Range.h>
Public Member Functions | |
constexpr | Range ()=default |
Constructs an empty range. | |
constexpr | Range (const ValueType startValue, const ValueType endValue) noexcept |
Constructs a range with given start and end values. | |
constexpr | Range (const Range &)=default |
Constructs a copy of another range. | |
Range & | operator= (const Range &)=default |
Copies another range object. | |
constexpr ValueType | getStart () const noexcept |
Returns the start of the range. | |
constexpr ValueType | getLength () const noexcept |
Returns the length of the range. | |
constexpr ValueType | getEnd () const noexcept |
Returns the end of the range. | |
constexpr bool | isEmpty () const noexcept |
Returns true if the range has a length of zero. | |
void | setStart (const ValueType newStart) noexcept |
Changes the start position of the range, leaving the end position unchanged. | |
constexpr Range | withStart (const ValueType newStart) const noexcept |
Returns a range with the same end as this one, but a different start. | |
constexpr Range | movedToStartAt (const ValueType newStart) const noexcept |
Returns a range with the same length as this one, but moved to have the given start position. | |
void | setEnd (const ValueType newEnd) noexcept |
Changes the end position of the range, leaving the start unchanged. | |
constexpr Range | withEnd (const ValueType newEnd) const noexcept |
Returns a range with the same start position as this one, but a different end. | |
constexpr Range | movedToEndAt (const ValueType newEnd) const noexcept |
Returns a range with the same length as this one, but moved to have the given end position. | |
void | setLength (const ValueType newLength) noexcept |
Changes the length of the range. | |
constexpr Range | withLength (const ValueType newLength) const noexcept |
Returns a range with the same start as this one, but a different length. | |
constexpr Range | expanded (ValueType amount) const noexcept |
Returns a range which has its start moved down and its end moved up by the given amount. | |
Range | operator+= (const ValueType amountToAdd) noexcept |
Adds an amount to the start and end of the range. | |
Range | operator-= (const ValueType amountToSubtract) noexcept |
Subtracts an amount from the start and end of the range. | |
constexpr Range | operator+ (const ValueType amountToAdd) const noexcept |
Returns a range that is equal to this one with an amount added to its start and end. | |
constexpr Range | operator- (const ValueType amountToSubtract) const noexcept |
Returns a range that is equal to this one with the specified amount subtracted from its start and end. | |
constexpr bool | operator== (Range other) const noexcept |
constexpr bool | operator!= (Range other) const noexcept |
constexpr bool | contains (const ValueType position) const noexcept |
Returns true if the given position lies inside this range. | |
ValueType | clipValue (const ValueType value) const noexcept |
Returns the nearest value to the one supplied, which lies within the range. | |
constexpr bool | contains (Range other) const noexcept |
Returns true if the given range lies entirely inside this range. | |
constexpr bool | intersects (Range other) const noexcept |
Returns true if the given range intersects this one. | |
constexpr Range | getIntersectionWith (Range other) const noexcept |
Returns the range that is the intersection of the two ranges, or an empty range with an undefined start position if they don't overlap. | |
constexpr Range | getUnionWith (Range other) const noexcept |
Returns the smallest range that contains both this one and the other one. | |
constexpr Range | getUnionWith (const ValueType valueToInclude) const noexcept |
Returns the smallest range that contains both this one and the given value. | |
Range | constrainRange (Range rangeToConstrain) const noexcept |
Returns a given range, after moving it forwards or backwards to fit it within this range. | |
Static Public Member Functions | |
static constexpr Range | between (const ValueType position1, const ValueType position2) noexcept |
Returns the range that lies between two positions (in either order). | |
static Range | withStartAndLength (const ValueType startValue, const ValueType length) noexcept |
Returns a range with a given start and length. | |
static constexpr Range | emptyRange (const ValueType start) noexcept |
Returns a range with the specified start position and a length of zero. | |
template<typename Integral , std::enable_if_t< std::is_integral_v< Integral >, int > = 0> | |
static Range | findMinAndMax (const ValueType *values, Integral numValues) noexcept |
Scans an array of values for its min and max, and returns these as a Range. | |
A general-purpose range object, that simply represents any linear range with a start and end point.
Note that when checking whether values fall within the range, the start value is considered to be inclusive, and the end of the range exclusive.
The templated parameter is expected to be a primitive integer or floating point type, though class types could also be used if they behave in a number-like way.
Constructs an empty range.
Referenced by Range< ValueType >::between(), Range< ValueType >::emptyRange(), Range< ValueType >::expanded(), Range< ValueType >::findMinAndMax(), Range< ValueType >::getIntersectionWith(), Range< ValueType >::getUnionWith(), Range< ValueType >::getUnionWith(), Range< ValueType >::movedToEndAt(), Range< ValueType >::movedToStartAt(), Range< ValueType >::operator+(), Range< ValueType >::operator-(), Range< ValueType >::withEnd(), Range< ValueType >::withLength(), Range< ValueType >::withStart(), and Range< ValueType >::withStartAndLength().
|
constexprnoexcept |
Constructs a range with given start and end values.
|
constexprdefault |
Constructs a copy of another range.
|
default |
Copies another range object.
|
staticconstexprnoexcept |
Returns the range that lies between two positions (in either order).
References Range< ValueType >::Range().
|
staticnodiscardnoexcept |
Returns a range with a given start and length.
References jassert, and Range< ValueType >::Range().
Referenced by Rectangle< ValueType >::getHorizontalRange(), and Rectangle< ValueType >::getVerticalRange().
|
staticnodiscardconstexprnoexcept |
Returns a range with the specified start position and a length of zero.
References Range< ValueType >::Range().
|
constexprnoexcept |
Returns the start of the range.
Referenced by Reservoir::doBufferedRead(), AudioData::Pointer< SampleFormat, Endianness, InterleavingType, Constness >::findMinAndMax(), SparseSet< Type >::getTotalRange(), and SparseSet< Type >::removeRange().
|
constexprnoexcept |
Returns the length of the range.
Referenced by Range< ValueType >::constrainRange().
|
constexprnoexcept |
Returns the end of the range.
Referenced by AudioData::Pointer< SampleFormat, Endianness, InterleavingType, Constness >::findMinAndMax(), SparseSet< Type >::getTotalRange(), and SparseSet< Type >::removeRange().
|
constexprnoexcept |
Returns true if the range has a length of zero.
References exactlyEqual().
Referenced by SparseSet< Type >::addRange(), Reservoir::doBufferedRead(), and SparseSet< Type >::removeRange().
|
noexcept |
Changes the start position of the range, leaving the end position unchanged.
If the new start position is higher than the current end of the range, the end point will be pushed along to equal it, leaving an empty range at the new position.
Referenced by Reservoir::doBufferedRead().
|
nodiscardconstexprnoexcept |
Returns a range with the same end as this one, but a different start.
If the new start position is higher than the current end of the range, the end point will be pushed along to equal it, returning an empty range at the new position.
References jmax(), and Range< ValueType >::Range().
|
nodiscardconstexprnoexcept |
Returns a range with the same length as this one, but moved to have the given start position.
References Range< ValueType >::Range().
|
noexcept |
Changes the end position of the range, leaving the start unchanged.
If the new end position is below the current start of the range, the start point will be pushed back to equal the new end point.
|
nodiscardconstexprnoexcept |
Returns a range with the same start position as this one, but a different end.
If the new end position is below the current start of the range, the start point will be pushed back to equal the new end point.
References jmin(), and Range< ValueType >::Range().
|
nodiscardconstexprnoexcept |
Returns a range with the same length as this one, but moved to have the given end position.
References Range< ValueType >::Range().
|
noexcept |
|
nodiscardconstexprnoexcept |
Returns a range with the same start as this one, but a different length.
Lengths less than zero are treated as zero.
References Range< ValueType >::Range().
|
nodiscardconstexprnoexcept |
Returns a range which has its start moved down and its end moved up by the given amount.
References Range< ValueType >::Range().
|
noexcept |
Adds an amount to the start and end of the range.
|
noexcept |
Subtracts an amount from the start and end of the range.
|
constexprnoexcept |
Returns a range that is equal to this one with an amount added to its start and end.
References Range< ValueType >::Range().
|
constexprnoexcept |
Returns a range that is equal to this one with the specified amount subtracted from its start and end.
References Range< ValueType >::Range().
|
constexprnoexcept |
Referenced by Range< ValueType >::operator!=().
|
constexprnoexcept |
References Range< ValueType >::operator==().
|
constexprnoexcept |
Returns true if the given position lies inside this range.
When making this comparison, the start value is considered to be inclusive, and the end of the range exclusive.
Referenced by SparseSet< Type >::removeRange().
|
noexcept |
Returns the nearest value to the one supplied, which lies within the range.
References jlimit().
|
constexprnoexcept |
Returns true if the given range lies entirely inside this range.
|
constexprnoexcept |
Returns true if the given range intersects this one.
|
nodiscardconstexprnoexcept |
Returns the range that is the intersection of the two ranges, or an empty range with an undefined start position if they don't overlap.
References jmax(), jmin(), and Range< ValueType >::Range().
Referenced by Reservoir::doBufferedRead().
|
nodiscardconstexprnoexcept |
Returns the smallest range that contains both this one and the other one.
References jmax(), jmin(), and Range< ValueType >::Range().
|
nodiscardconstexprnoexcept |
Returns the smallest range that contains both this one and the given value.
References jmax(), jmin(), and Range< ValueType >::Range().
|
noexcept |
Returns a given range, after moving it forwards or backwards to fit it within this range.
If the supplied range has a greater length than this one, the return value will be this range.
Otherwise, if the supplied range is smaller than this one, the return value will be the new range, shifted forwards or backwards so that it doesn't extend beyond this one, but keeping its original length.
References Range< ValueType >::getLength(), and jlimit().
|
staticnoexcept |
Scans an array of values for its min and max, and returns these as a Range.
References Range< ValueType >::Range().
Referenced by MemoryMappedAudioFormatReader::scanMinAndMaxInterleaved().