EvaluatorHelperAllEvaluatorsAreAvailableT Method (JulianDate, IEnumerableT) |
Determines whether all evaluators in a collection are available at a given time.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static bool AllEvaluatorsAreAvailable<T>(
JulianDate date,
IEnumerable<T> evaluators
)
where T : IAvailability
Public Shared Function AllEvaluatorsAreAvailable(Of T As IAvailability) (
date As JulianDate,
evaluators As IEnumerable(Of T)
) As Boolean
public:
generic<typename T>
where T : IAvailability
static bool AllEvaluatorsAreAvailable(
JulianDate date,
IEnumerable<T>^ evaluators
)
static member AllEvaluatorsAreAvailable :
date : JulianDate *
evaluators : IEnumerable<'T> -> bool when 'T : IAvailability
Parameters
- date
- Type: AGI.Foundation.TimeJulianDate
The date at which to determine availability. - evaluators
- Type: System.Collections.GenericIEnumerableT
The collection of evaluators.
Type Parameters
- T
- The type of evaluator.
Return Value
Type:
Boolean if all evaluators in the collection are available for the given date; otherwise
.
Exceptions See Also