I noticed when trying to use ValidationRuleSet's public init(rules: [Rule]) with more than one Rule with the same validate type I get an error.
For example using ValidationRuleLength and an email pattern with ValidationRulePattern,
provides the Xcode compile time error Cannot convert value of type 'ValidationRuleLength' to expected element type '_'
Any ideas how to solve this? Currently adding them individually works though.
I noticed when trying to use
ValidationRuleSet
'spublic init(rules: [Rule])
with more than oneRule
with the same validate type I get an error.For example using
ValidationRuleLength
and an email pattern withValidationRulePattern
, provides the Xcode compile time errorCannot convert value of type 'ValidationRuleLength' to expected element type '_'
Any ideas how to solve this? Currently adding them individually works though.
Thanks!