arrow-exact icon indicating copy to clipboard operation
arrow-exact copied to clipboard

Arrow Exact exposes a variation of exact types to work with in Arrow. It includes some boilerplate for commonly defined value class wrappers.

Results 11 arrow-exact issues
Sort by recently updated
recently updated
newest added

KotlinX.Serialization has a great serialization story with regular Kotlin: ```kotlin @Serializable class Foo( val username: String, ) { init { ensure(' ' !in username) { "The username cannot contain whitespace"...