Click or drag to resize

IntervalTCombine Method

Combines two intervals that meet. This is similar to a union, but the intervals must meet.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static Interval<T> Combine(
	Interval<T> left,
	Interval<T> right
)

Parameters

left  IntervalT
The left interval.
right  IntervalT
The right interval.

Return Value

IntervalT
The combined interval.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown when left and right are disjoint.
See Also