Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Created May 16, 2020 20:14
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 lu4nm3/e85f921db3dce14937f7fc14c0451bfa to your computer and use it in GitHub Desktop.
Save lu4nm3/e85f921db3dce14937f7fc14c0451bfa to your computer and use it in GitHub Desktop.
case class EmailAddress(emailAddress: String) {
def copy(emailAddress: String = emailAddress): Either[String, EmailAddress] = {
EmailAddress(emailAddress)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment