Click or drag to resize

TimeIntervalCollection<T>.Intersect Method (TimeInterval<T>)

Computes the intersection of this interval collection with an interval.

Namespace:  AGI.Foundation.Time
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public TimeIntervalCollection<T> Intersect(
	TimeInterval<T> interval
)

Parameters

interval
Type: AGI.Foundation.Time.TimeInterval<T>
The interval to intersect with this collection

Return Value

Type: TimeIntervalCollection<T>
The intersection of this collection with the interval.
Remarks
The returned collection will only contain the intervals that are in both collections. If two intervals in the two collections overlap but have different Data, the overlapping part will NOT be included in the resulting collection.
See Also