TimeIntervalCollection<T>.Remove Method (TimeInterval<T>) |
Removes the specified interval from this interval list, creating a hole
over the specified interval.
The Data property of the input interval is ignored.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool Remove(
TimeInterval<T> item
)
Public Function Remove (
item As TimeInterval(Of T)
) As Boolean
public:
virtual bool Remove(
TimeInterval<T>^ item
) sealed
abstract Remove :
item : TimeInterval<'T> -> bool
override Remove :
item : TimeInterval<'T> -> bool
Parameters
- item
- Type: AGI.Foundation.Time.TimeInterval<T>
The interval to remove.
Return Value
Type:
Booleantrue if any part of the input interval was in the interval list; otherwise
false.
Implements
ICollection<T>.Remove(T)
Exceptions
See Also