UnityEngine.NUnit.Framework.Constraints.ExactCountOperator.ApplyPrefix C# (CSharp) Method

ApplyPrefix() public method

Returns a constraint that will apply the argument to the members of a collection, succeeding if none of them succeed.
public ApplyPrefix ( Constraint constraint ) : Constraint
constraint Constraint
return Constraint
        public override Constraint ApplyPrefix(Constraint constraint)
        {
            return new ExactCountConstraint(expectedCount, constraint);
        }
    }