|
Range<TRange, TState> .Merge(Range<TRange, TState> , Comparison<TRange> ) Method
|
Merges two ranges into one range that fully encompasses both ranges.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
SyntaxPublic Function Merge (
range As Range(Of TRange, TState),
comparison As Comparison(Of TRange)
) As Range(Of TRange, TState)
public:
Range<TRange, TState>^ Merge(
Range<TRange, TState>^ range,
Comparison<TRange>^ comparison
)
member Merge :
range : Range<'TRange, 'TState> *
comparison : Comparison<'TRange> -> Range<'TRange, 'TState>
function Merge(range, comparison);
View SourceParameters
- range Range<TRange, TState>
- The range to be merged with this one.
- comparison Comparison<TRange>
- The comparison used to compare objects of type TRange.
Return Value
Range<TRange,
TState>The range that fully encompasses the merged ranges.
Exceptions
See Also