| 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
)
Public Sub New (
min As T,
max As T,
includedMin As T,
includedMax As T
)
public:
Chunk(
T min,
T max,
T includedMin,
T includedMax
)
new :
min : 'T *
max : 'T *
includedMin : 'T *
includedMax : 'T -> Chunk
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