-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Ranges_CompositeRange_1_Except__1_1
Andrew Koryavchenko edited this page Jun 17, 2018
·
1 revision
Returns source range with other range excluded.
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public CompositeRange<T> Except<TKey2>(
Range<T, TKey2> other
)
VB
Public Function Except(Of TKey2) (
other As Range(Of T, TKey2)
) As CompositeRange(Of T)
F#
member Except :
other : Range<'T, 'TKey2> -> CompositeRange<'T>
- other
- Type: CodeJam.Ranges.Range(T, TKey2)
The range to intersect with.
- TKey2
- The type of the other range key
Type: CompositeRange(T)
Source range with other range excluded.
CompositeRange(T) Structure
Except Overload
CodeJam.Ranges Namespace