- 
                Notifications
    
You must be signed in to change notification settings  - Fork 35
 
M_CodeJam_Ranges_CompositeRange_1_MakeInclusive
        Andrew Koryavchenko edited this page Jun 17, 2018 
        ·
        1 revision
      
    Replaces exclusive boundaries with inclusive ones with the values from the selector callbacks
Namespace: CodeJam.Ranges
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public CompositeRange<T> MakeInclusive(
	Func<T, T> fromValueSelector,
	Func<T, T> toValueSelector
)VB
Public Function MakeInclusive ( 
	fromValueSelector As Func(Of T, T),
	toValueSelector As Func(Of T, T)
) As CompositeRange(Of T)F#
member MakeInclusive : 
        fromValueSelector : Func<'T, 'T> * 
        toValueSelector : Func<'T, 'T> -> CompositeRange<'T> 
- fromValueSelector
 - Type: System.Func(T, T)
Callback to obtain a new value for the From boundary. Used if the boundary is exclusive. - toValueSelector
 - Type: System.Func(T, T)
Callback to obtain a new value for the To boundary. Used if the boundary is exclusive. 
Type: CompositeRange(T)
A range with inclusive boundaries.