Jpp
|
Range of values. More...
#include <JRange.hh>
Public Types | |
typedef JRange< T, JComparator_t > | range_type |
typedef JLANG::JClass< T > ::argument_type | argument_type |
typedef T | key_type |
typedef T | mapped_type |
Public Member Functions | |
JRange () | |
Default constructor. More... | |
JRange (argument_type x, argument_type y) | |
Constructor. More... | |
JRange (argument_type x) | |
Constructor. More... | |
template<class iterator_type , class value_type , class result_type > | |
JRange (iterator_type __begin, iterator_type __end, result_type value_type::*member) | |
Constructor. More... | |
template<class iterator_type , class value_type , class result_type > | |
JRange (iterator_type __begin, iterator_type __end, result_type(value_type::*function)() const) | |
Constructor. More... | |
const range_type & | getRange () const |
Get range. More... | |
void | setRange (const range_type &range) |
Set range. More... | |
void | setRange (argument_type x, argument_type y) |
Set lower and uppper limit. More... | |
template<class iterator_type , class value_type , class result_type > | |
void | setRange (iterator_type __begin, iterator_type __end, result_type value_type::*member) |
Set lower and uppper limit. More... | |
template<class iterator_type , class value_type , class result_type > | |
void | setRange (iterator_type __begin, iterator_type __end, result_type(value_type::*function)() const) |
Set lower and uppper limit. More... | |
T | getLowerLimit () const |
Get lower limit. More... | |
T | getUpperLimit () const |
Get upper limit. More... | |
void | setLowerLimit (argument_type x) |
Set lower limit. More... | |
void | setUpperLimit (argument_type y) |
Set upper limit. More... | |
void | fixLowerLimit (argument_type x) |
Fix lower limit. More... | |
void | fixUpperLimit (argument_type y) |
Fix upper limit. More... | |
bool | equals (const range_type &range) const |
Equal method. More... | |
T | getLength () const |
Get length (difference between upper and lower limit). More... | |
bool | is_valid () const |
Check validity of range. More... | |
bool | operator() (argument_type x) const |
Test whether value is inside range. More... | |
T | constrain (argument_type x) const |
Constrain value to range. More... | |
bool | overlap (const range_type &range) const |
Test overlap with given range. More... | |
range_type | include (argument_type x) |
Include given value to range. More... | |
range_type & | join (const range_type &range) |
Join ranges. More... | |
range_type & | combine (const range_type &range) |
Combine ranges. More... | |
range_type & | add (argument_type x) |
Add offset. More... | |
range_type & | sub (argument_type x) |
Subtract offset. More... | |
range_type & | add (const range_type &range) |
Add offset. More... | |
range_type & | sub (const range_type &range) |
Subtract offset. More... | |
range_type & | mul (const double factor) |
Multiply range. More... | |
range_type & | div (const double factor) |
Divide range. More... | |
T | getN (const double R) const |
Get expected number of occurances of given rate within this interval. More... | |
const key_type & | getKey () const |
const mapped_type & | getValue () const |
mapped_type & | getValue () |
JFirst_t & | mul (const JSecond_t &object) |
Multiply with object. More... | |
Static Public Member Functions | |
static T | getMinimum () |
Get minimum possible value. More... | |
static T | getMaximum () |
Get maximum possible value. More... | |
Public Attributes | |
JComparator_t | compare |
Function object. More... | |
T | first |
T | second |
Static Public Attributes | |
static const JRange< T, JComparator_t > | DEFAULT_RANGE |
Default range. More... | |
Range of values.
typedef JRange<T, JComparator_t> JTOOLS::JRange< T, JComparator_t >::range_type |
typedef JLANG::JClass<T>::argument_type JTOOLS::JRange< T, JComparator_t >::argument_type |
|
inherited |
|
inherited |
|
inline |
Default constructor.
This range corresponds to the maximal possible range.
Definition at line 48 of file JRange.hh.
|
inline |
Constructor.
x | lower limit |
y | upper limit |
|
inline |
Constructor.
x | lower and upper limit |
|
inline |
Constructor.
__begin | begin of data |
__end | end of data |
member | pointer to data member |
Definition at line 83 of file JRange.hh.
|
inline |
Constructor.
__begin | begin of data |
__end | end of data |
function | pointer to member method |
Definition at line 98 of file JRange.hh.
|
inline |
|
inline |
|
inline |
|
inline |
Set lower and uppper limit.
__begin | begin of data |
__end | end of data |
member | pointer to data member |
Definition at line 147 of file JRange.hh.
|
inline |
Set lower and uppper limit.
__begin | begin of data |
__end | end of data |
function | pointer to member method |
Definition at line 165 of file JRange.hh.
|
inline |
Get lower limit.
|
inline |
Get upper limit.
|
inline |
Set lower limit.
x | lower limit |
|
inline |
Set upper limit.
y | upper limit |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Test overlap with given range.
The result is equivalent to join(range).is_valid().
range | range |
Definition at line 321 of file JRange.hh.
|
inline |
Include given value to range.
The new lower limit is the minimim of the original lower limit and given value and the new upper limit is the maximum of the original upper limit and given value;
x | value |
Definition at line 336 of file JRange.hh.
|
inline |
Join ranges.
The new lower limit is the maximim of the two lower limits and the new upper limit is the minimum of the two upper limits. This operation results in an equal or smaller range and may result in an unphysical range (i.e. lower limit > upper limit).
range | range |
Definition at line 354 of file JRange.hh.
|
inline |
Combine ranges.
The new lower limit is the minimim of the two lower limits and the new upper limit is the maximum of the two upper limits. This operation results in an equal or larger range.
range | range |
Definition at line 371 of file JRange.hh.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinestatic |
|
inlinestatic |
Get maximum possible value.
Definition at line 496 of file JRange.hh.
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
Multiply with object.
object | object |
Definition at line 273 of file JMath.hh.
|
static |
JComparator_t JTOOLS::JRange< T, JComparator_t >::compare |
|
inherited |
|
inherited |