|
Get the extents of a range, for a given size.
-
range
:
Range<'T>
-
sz
:
Size
-
Returns:
'T * 'T
|
|
Get the lower bound of a range for the given size.
-
range
:
Range<'T>
-
sz
:
Size
-
Returns:
'T
|
|
Get the origin of a range. This might be the mid-point or the lower
bound, depending on what the range represents.
The 'bounds' of a range are scaled around this value when using the
'linear' family of combinators.
When using a 'Range' to generate numbers, the shrinking function will
shrink towards the origin.
-
range
:
Range<'T>
-
Returns:
'T
|
|
-
range
:
Range<'T>
-
mapper
:
Func<'T, 'TResult>
-
Returns:
Range<'TResult>
|
|
Get the upper bound of a range for the given size.
-
range
:
Range<'T>
-
sz
:
Size
-
Returns:
'T
|