Date

sealed abstract
class Date extends Validation[Instant, Unit]
Companion
object
class Validation[Instant, Unit]
class Object
trait Matchable
class Any
class After
class Before

Value members

Inherited methods

final
def andThen[T](validation: Validation[Unit, T]): Validation[Instant, T]
Inherited from
Validation
final
def collect[T](f: PartialFunction[Unit, T]): Validation[Instant, T]
Inherited from
Validation
def errors(input: Instant): List[Error]
Inherited from
Validation
final
def map[T](f: Unit => T): Validation[Instant, T]
Inherited from
Validation
final
def modifyError(pf: PartialFunction[Error, Error]): Validation[Instant, Unit]
Inherited from
Validation
final
def modifyErrors(f: NonEmptyList[Error] => NonEmptyList[Error]): Validation[Instant, Unit]
Inherited from
Validation
def run(input: Instant): ValidatedNel[Error, Unit]
Inherited from
Validation
final
def withError(error: Error): Validation[Instant, Unit]
Inherited from
Validation
final
def withErrors(errors: NonEmptyList[Error]): Validation[Instant, Unit]
Inherited from
Validation