DefaultFeatureConstraintEvaluationResults
public class DefaultFeatureConstraintEvaluationResults<ConstraintType> : FeatureConstraintEvaluationResults where ConstraintType : FeatureConstraint
The default container for feature constraint evaluation results.
-
Results for all the constraint results, including those that are
.notActive
Declaration
Swift
public let all: Set<FeatureConstraintResult<ConstraintType>>
-
Only the
.satisfied
constraint resultsDeclaration
Swift
public lazy var satisfied: Set<ConstraintType> { get set }
-
Only the
.notSatisfied
constraint resultsDeclaration
Swift
public lazy var notSatisfied: Set<ConstraintType> { get set }
-
Only the
.notDetermined
constraint resultsDeclaration
Swift
public lazy var notDetermined: Set<ConstraintType> { get set }