RangeT Conversion (T to RangeT)
Performs an implicit conversion from
T to
RangeT using the provided value as upper bound.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0
public static implicit operator Range<T> (
T upperBound
)
Public Shared Widening Operator CType (
upperBound As T
) As Range(Of T)
static implicit operator Range<T> (
T upperBound
)
F# does not support the declaration of new casting operators.
- upperBound T
- The upper bound of the range. Whether this is an exclusive or inclusive bound, it depends on the context the RangeT is used in.
RangeT
A
RangeT instance representing a range between the default value of
T and
upperBound.