EvaluatorHelper.AnyEvaluatorIsTimeVarying<T> Method (TimeIntervalCollection<T>) |
Determines if any evaluator stored as
Data
in a
TimeIntervalCollection<T> is time-varying.
Any evaluators in the collection that are
null are ignored.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool AnyEvaluatorIsTimeVarying<T>(
TimeIntervalCollection<T> collection
)
where T : IIsTimeVarying
Public Shared Function AnyEvaluatorIsTimeVarying(Of T As IIsTimeVarying) (
collection As TimeIntervalCollection(Of T)
) As Boolean
public:
generic<typename T>
where T : IIsTimeVarying
static bool AnyEvaluatorIsTimeVarying(
TimeIntervalCollection<T>^ collection
)
static member AnyEvaluatorIsTimeVarying :
collection : TimeIntervalCollection<'T> -> bool when 'T : IIsTimeVarying
Parameters
- collection
- Type: AGI.Foundation.Time.TimeIntervalCollection<T>
The time interval collection.
Type Parameters
- T
- The type of evaluator.
Return Value
Type:
Booleantrue if any evaluator in the collection is time varying,
or if the time interval collection is non-infinite; otherwise
false.
See Also