Last active
April 11, 2022 17:35
-
-
Save supermanue/a1651b038f88d4b250ca0178dd66bab9 to your computer and use it in GitHub Desktop.
Tagged Types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Tagged[U] = { type Tag = U } | |
type @@[T, U] = T with Tagged[U] | |
trait NameTag | |
trait SurnameTag | |
type Name = String @@ NameTag | |
type Surname = String @@ SurnameTag | |
(...) | |
val person = Person("manuel".asInstanceOf[Name], "Rodriguez".asInstanceOf[Surname]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment