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