TimeIntervalCollection<T>.Equality Operator |
Returns true if the two instances are exactly equal.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool operator ==(
TimeIntervalCollection<T> left,
TimeIntervalCollection<T> right
)
Public Shared Operator = (
left As TimeIntervalCollection(Of T),
right As TimeIntervalCollection(Of T)
) As Boolean
public:
static bool operator ==(
TimeIntervalCollection<T>^ left,
TimeIntervalCollection<T>^ right
)
static let inline (=)
left : TimeIntervalCollection<'T> *
right : TimeIntervalCollection<'T> : bool
Parameters
- left
- Type: AGI.Foundation.Time.TimeIntervalCollection<T>
The instance to compare to right.
- right
- Type: AGI.Foundation.Time.TimeIntervalCollection<T>
The instance to compare to left.
Return Value
Type:
Booleantrue if
left represents the same value as
right; otherwise
false.
Remarks
In order for two collections to be considered equal, each
TimeInterval in one collection must
be equal to the
TimeInterval at the same index in the other collection.
See Also