Created
February 22, 2018 11:48
-
-
Save Leammas/fffb5e8cedd2df196c7b6669d03fcafb to your computer and use it in GitHub Desktop.
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
object Validation { | |
type Field = String | |
type Code = String | |
type Error = (Field, Code) | |
type ValidationResult[A] = Validated[Error, A] | |
type Validation[A] = Applicative[Nested[Task, ValidationResult, A]] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment