All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.atnos.eff.Validate.scala Maven / Gradle / Ivy

The newest version!
package org.atnos.eff

sealed trait Validate[+E, A]
case class Correct[E]() extends Validate[E, Unit]
case class Warning[E](e: E) extends Validate[E, Unit]
case class Wrong[E](e: E) extends Validate[E, Unit]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy