Skip to content

Instantly share code, notes, and snippets.

@blast-hardcheese
Created November 24, 2015 17:14
Show Gist options
  • Save blast-hardcheese/979a305bc7fc86ad66dd to your computer and use it in GitHub Desktop.
Save blast-hardcheese/979a305bc7fc86ad66dd to your computer and use it in GitHub Desktop.
...
type FirstName = (String @@ FirstName.Internal)
object FirstName { trait Internal; def apply(value: String): FirstName = value.asInstanceOf[FirstName] }
type LastName = (String @@ LastName.Internal)
object LastName { trait Internal; def apply(value: String): LastName = value.asInstanceOf[LastName] }
type Email = (String @@ Email.Internal)
object Email { trait Internal; def apply(value: String): Email = value.asInstanceOf[Email] }
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment