-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Ranges_Range_MinFrom__1
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Returns the less one of the two From boundaries.
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static RangeBoundaryFrom<T> MinFrom<T>(
T value1,
T value2
)
VB
Public Shared Function MinFrom(Of T) (
value1 As T,
value2 As T
) As RangeBoundaryFrom(Of T)
F#
static member MinFrom :
value1 : 'T *
value2 : 'T -> RangeBoundaryFrom<'T>
- value1
- Type: T
The value of the boundary1. - value2
- Type: T
The value of the boundary2.
- T
- The type of the boundary value.
Type: RangeBoundaryFrom(T)
The less one of the two From boundaries.