Click or drag to resize

IntervalTIsDisjoint Method

Determines whether two intervals are disjoint. Two intervals are disjoint if no part of one interval is contained in the other.

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

Parameters

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

Return Value

Boolean
if no part of the left interval is contained in the right interval; otherwise, .
See Also