 | rangeCriteriaT Constructor (T, T, Boolean) |
imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Initializes a new instance of the
rangeCriteriaT class in MinMax range mode. It will return
true if test value is between or equal to Min and Max values.
Namespace:
imbSCI.Core.math.range
Assembly:
imbSCI.Core (in imbSCI.Core.dll) Version: 0.3.58.
Syntaxpublic rangeCriteria(
T min,
T max,
bool trueIfInside = true
)
Request Example
View SourceParameters
- min
- Type: T
The minimum value of range. The range test will return true against exactly the same value. - max
- Type: T
The maximum value of range. The range test will return true against exactly the same value. - trueIfInside (Optional)
- Type: SystemBoolean
if set to false the range test is inversed.
See Also