DefaultFeatureConstraintEvaluationResults

public class DefaultFeatureConstraintEvaluationResults<ConstraintType> : FeatureConstraintEvaluationResults where ConstraintType : FeatureConstraint

The default container for feature constraint evaluation results.

  • all

    Results for all the constraint results, including those that are .notActive

    Declaration

    Swift

    public let all: Set<FeatureConstraintResult<ConstraintType>>
  • Only the .satisfied constraint results

    Declaration

    Swift

    public lazy var satisfied: Set<ConstraintType> { get set }
  • Only the .notSatisfied constraint results

    Declaration

    Swift

    public lazy var notSatisfied: Set<ConstraintType> { get set }
  • Only the .notDetermined constraint results

    Declaration

    Swift

    public lazy var notDetermined: Set<ConstraintType> { get set }