-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Ranges_Range_Create__2
Andrew Koryavchenko edited this page Jun 17, 2018
·
3 revisions
Creates the range.
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static Range<T, TKey> Create<T, TKey>(
RangeBoundaryFrom<T> from,
RangeBoundaryTo<T> to,
TKey key
)
VB
Public Shared Function Create(Of T, TKey) (
from As RangeBoundaryFrom(Of T),
to As RangeBoundaryTo(Of T),
key As TKey
) As Range(Of T, TKey)
F#
static member Create :
from : RangeBoundaryFrom<'T> *
to : RangeBoundaryTo<'T> *
key : 'TKey -> Range<'T, 'TKey>
- from
- Type: CodeJam.Ranges.RangeBoundaryFrom(T)
Boundary From. - to
- Type: CodeJam.Ranges.RangeBoundaryTo(T)
Boundary To. - key
- Type: TKey
The value of the range key.
- T
- The type of the range values.
- TKey
- The type of the range key
Type: Range(T, TKey)
A new range.