Skip to content

M_CodeJam_Ranges_Range_CreateExclusive__2

Andrew Koryavchenko edited this page Jun 17, 2018 · 3 revisions

Range.CreateExclusive(T, TKey) Method (T, T, TKey)

Creates the range.

Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public static Range<T, TKey> CreateExclusive<T, TKey>(
	T fromValue,
	T toValue,
	TKey key
)

VB

Public Shared Function CreateExclusive(Of T, TKey) ( 
	fromValue As T,
	toValue As T,
	key As TKey
) As Range(Of T, TKey)

F#

static member CreateExclusive : 
        fromValue : 'T * 
        toValue : 'T * 
        key : 'TKey -> Range<'T, 'TKey> 

Parameters

 

fromValue
Type: T
The value of the boundary From exclusive.
toValue
Type: T
The value of the boundary To exclusive.
key
Type: TKey
The value of the range key.

Type Parameters

 

T
The type of the range values.
TKey
The type of the range key

Return Value

Type: Range(T, TKey)
A new range.

See Also

Reference

Range Class
CreateExclusive Overload
CodeJam.Ranges Namespace

Clone this wiki locally