is From To Inclusive
fun isFromToInclusive(value: Double, fromValue: Double, toValue: Double): PropertyState<Double>(source)
Check if the Double value is within a range (exclusive from, inclusive to).
Return
property state Correct containing value if value is within the range (exclusive from, inclusive to). Otherwise Incorrect.
Parameters
from Value
the lower end (exclusive) of the range value must be in.
to Value
the upper end (inclusive) of the range value must be in.
Check if the Float value is within a range (exclusive from, inclusive to).
Return
property state Correct containing value if value is within the range (exclusive from, inclusive to). Otherwise Incorrect.