Represents a inclusive range. More...
Public Member Functions | |
Range (T lower, T upper) | |
override string | ToString () |
Presents the Range in readable format. More... | |
bool | IsValid () |
Determines if the range is valid. More... | |
bool | ContainsValue (T value) |
Determines if the provided value is inside the range. More... | |
bool | IsInsideRange (Range< T > range) |
Determines if this Range is inside the bounds of another range. More... | |
bool | ContainsRange (Range< T > range) |
Determines if another range is inside the bounds of this range. More... | |
Properties | |
T | Minimum [get, set] |
Minimum value of the range. More... | |
T | Maximum [get, set] |
Maximum value of the range. More... | |
Represents a inclusive range.
T | the range components type |
T | : | IComparable<T> |
RealNetworks.CameraKit.Range< T >.Range | ( | T | lower, |
T | upper | ||
) |
bool RealNetworks.CameraKit.Range< T >.ContainsRange | ( | Range< T > | range | ) |
Determines if another range is inside the bounds of this range.
range | The child range to test |
bool RealNetworks.CameraKit.Range< T >.ContainsValue | ( | T | value | ) |
Determines if the provided value is inside the range.
value | The value to test |
bool RealNetworks.CameraKit.Range< T >.IsInsideRange | ( | Range< T > | range | ) |
Determines if this Range is inside the bounds of another range.
range | The parent range to test on |
bool RealNetworks.CameraKit.Range< T >.IsValid | ( | ) |
Determines if the range is valid.
override string RealNetworks.CameraKit.Range< T >.ToString | ( | ) |
|
getset |
Maximum value of the range.
|
getset |
Minimum value of the range.