| NumericTypeT, TTypeRange Method (T, Boolean, T, Boolean) |
Adds a chunk of numeric values
Namespace:
SmartTests.Ranges
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public INumericType<T> Range(
T min,
bool minIncluded,
T max,
bool maxIncluded
)
Public Function Range (
min As T,
minIncluded As Boolean,
max As T,
maxIncluded As Boolean
) As INumericType(Of T)
public:
virtual INumericType<T>^ Range(
T min,
bool minIncluded,
T max,
bool maxIncluded
) sealed
abstract Range :
min : 'T *
minIncluded : bool *
max : 'T *
maxIncluded : bool -> INumericType<'T>
override Range :
min : 'T *
minIncluded : bool *
max : 'T *
maxIncluded : bool -> INumericType<'T>
Parameters
- min
- Type: T
The min value (included) of the chunk. - minIncluded
- Type: SystemBoolean
true to include min, false otherwise. - max
- Type: T
The max value (included) of the chunk. - maxIncluded
- Type: SystemBoolean
true to include max, false otherwise.
Return Value
Type:
INumericTypeTReturn
this so that adding chunks can be chained.
Implements
INumericTypeTRange(T, Boolean, T, Boolean)See Also