-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Ranges_RangeBoundaryFrom_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 RangeBoundaryFrom(
T value,
RangeBoundaryFromKind boundaryKind
)
VB
Public Sub New (
value As T,
boundaryKind As RangeBoundaryFromKind
)
F#
new :
value : 'T *
boundaryKind : RangeBoundaryFromKind -> RangeBoundaryFrom
- value
- Type: T
The value of the boundary. Infinite (or empty) boundaries should use default(T) or NegativeInfinity(T) (if the type has one) as the value. - boundaryKind
- Type: CodeJam.Ranges.RangeBoundaryFromKind
The kind of the boundary.