sealed trait Single[T] extends Validator[T]
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Single
- Validator
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
-
abstract
def
validate(t: T): List[ValidationError[_]]
- Definition Classes
- Validator
Concrete Value Members
-
def
and(other: Validator[T]): Validator[T]
- Definition Classes
- Validator
-
def
asArrayElements: Validator[Array[T]]
- Definition Classes
- Validator
-
def
asIterableElements[C[X] <: Iterable[X]]: Validator[C[T]]
- Definition Classes
- Validator
-
def
asOptionElement: Validator[Option[T]]
- Definition Classes
- Validator
-
def
contramap[TT](g: (TT) ⇒ T): Validator[TT]
- Definition Classes
- Validator
-
def
or(other: Validator[T]): Validator[T]
- Definition Classes
- Validator
-
def
show: Option[String]
- Definition Classes
- Validator