-
Notifications
You must be signed in to change notification settings - Fork 31
recursive coerce #57
Copy link
Copy link
Open
Description
I often wrap newtypes in newtypes and then I want to access the basetype. Example:
@newtype case class Secret(value: String)
@newtype case class Password(value: Secret)
@newtype case class AdminPassword(value: Password)
val adminPassword: AdminPassword = ???
// Access the basetype
println(adminPassword.value.value.value)Something like adminPassword.coerce[String] would be nice, or maybe even adminPassword.underlying. As Coercible is a typeclass, I think with the correct derivation it should be possible to get something like it.
Opinions?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels