Click or drag to resize

INumericTypeTRange Method (T, Boolean, T, Boolean)

Adds a chunk of numeric values

Namespace:  SmartTests.Ranges
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
INumericType<T> Range(
	T min,
	bool minIncluded,
	T max,
	bool maxIncluded
)

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: INumericTypeT
Return this so that adding chunks can be chained.
See Also