-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Ranges_RangeBoundaryTo_1__ctor
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Creates a new range boundary.
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public RangeBoundaryTo(
T value,
RangeBoundaryToKind boundaryKind
)
VB
Public Sub New (
value As T,
boundaryKind As RangeBoundaryToKind
)
F#
new :
value : 'T *
boundaryKind : RangeBoundaryToKind -> RangeBoundaryTo
- value
- Type: T
The value of the boundary. Infinite (or empty) boundaries should use default(T) or PositiveInfinity(T) (if the type has one) as the value. - boundaryKind
- Type: CodeJam.Ranges.RangeBoundaryToKind
The kind of the boundary.