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