Click or drag to resize

Range<T> .Merge(Range<T> , IComparer<T> ) Method

Merges two ranges into one range that fully encompasses both ranges.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.242-beta+5de70bd1c87865d409ebc16b8886196644c0c750
Syntax
public Range<T> Merge(
	Range<T> range,
	IComparer<T> comparer
)
View Source

Parameters

range  Range<T>
The range to be merged with this one.
comparer  IComparer<T>
The comparer used to compare objects of type T.

Return Value

Range<T>
The range that fully encompasses the merged ranges.
See Also