Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Created May 16, 2020 20:12
Show Gist options
  • Save lu4nm3/b3bcca1d279f2fe6a20a01508cb9a133 to your computer and use it in GitHub Desktop.
Save lu4nm3/b3bcca1d279f2fe6a20a01508cb9a133 to your computer and use it in GitHub Desktop.
def apply(emailAddress: String): Either[String, EmailAddress] = {
if (isValidAddress(emailAddress)) {
Right(new EmailAddress(emailAddress))
} else {
Left("Invalid email address")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment