Click or drag to resize

ChunkT Constructor

Instantiates a chunk

Namespace:  SmartTests.Ranges
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
public Chunk(
	T min,
	T max,
	T includedMin,
	T includedMax
)

Parameters

min
Type: T
The min value (included) of the chunk.
max
Type: T
The max value (included) of the chunk.
includedMin
Type: T
The minimum value included in this chunk. This is min when min is included, the smallest value over min otherwise.
includedMax
Type: T
The maximum value included in this chunk. This is max when max is included, the smallest value below max otherwise.
See Also