Validator

cats.xml.validator.Validator
See theValidator companion object
trait Validator[T]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Abstract methods

def apply(t: T): Result[T]

Concrete methods

def and(v1: Validator[T], vn: Validator[T]*): Validator[T]
def contramap[U](f: U => T): Validator[U]
def or(v1: Validator[T], vn: Validator[T]*): Validator[T]
def rewordError(error: T => String): Validator[T]