TimeIntervalCollection<T>.EqualsEpsilon Method (TimeIntervalCollection<T>, Double) |
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool EqualsEpsilon(
TimeIntervalCollection<T> other,
double epsilon
)
Public Function EqualsEpsilon (
other As TimeIntervalCollection(Of T),
epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
TimeIntervalCollection<T>^ other,
double epsilon
) sealed
abstract EqualsEpsilon :
other : TimeIntervalCollection<'T> *
epsilon : float -> bool
override EqualsEpsilon :
other : TimeIntervalCollection<'T> *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.Time.TimeIntervalCollection<T>
A TimeIntervalCollection<T> to compare this one to. - epsilon
- Type: System.Double
The largest difference between the Start and Stop dates, in seconds, such that they will be considered equal.
Return Value
Type:
BooleanTrue if all
TimeIntervals are equal as defined by the epsilon value.
Implements
IEquatableEpsilon<T>.EqualsEpsilon(T, Double)
See Also