Skip to content

Instantly share code, notes, and snippets.

@dcampogiani
Last active February 3, 2018 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcampogiani/f802341c805f30a1cdb0e3759dfbd695 to your computer and use it in GitHub Desktop.
Save dcampogiani/f802341c805f30a1cdb0e3759dfbd695 to your computer and use it in GitHub Desktop.
fun String.eitherMail(): Either<String, String> =
when {
validMail(this) -> this.right()
else -> "Invalid email".left()
}
fun String.eitherPhoneNumber(): Either<String, String> =
when {
validNumber(this) -> this.right()
else -> "Invalid phone number".left()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment