You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// An optional value.
letmessage:String?="hello"
// This will trigger the rules.
letresult=try message.validated(by: rules)
// This will skip the rules due to optional chaining.
letresult=try message?.validated(by: rules)