RangeT Conversion (ValueTupleT, T to RangeT)
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static implicit operator Range<T> (
(T , T ) bounds
)
Public Shared Widening Operator CType (
bounds As ( As T, As T)
) As Range(Of T)
static implicit operator Range<T> (
ValueTuple<T, T> bounds
)
F# does not support the declaration of new casting operators.
- bounds ValueTupleT, T
- The ValueTupleT1, T2 instance to be converted to RangeT.
RangeT
A
RangeT instance representing a range between the provided
Item1 and
Item2.