Errors

final case
class Errors[A, B](head: (A, NonEmptyList[B]), tail: HashMap[A, NonEmptyList[B]])
Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def get(value: A): List[B]
def modifyFields[C](f: A => C): Errors[C, B]
def modifyFieldsF[F[_], C](f: A => F[C])(implicit F: Applicative[F]): F[Errors[C, B]]
def to[C1](factory: Factory[(A, NonEmptyList[B]), C1]): C1
def toMap: Map[A, NonEmptyList[B]]
def toNel: NonEmptyList[(A, NonEmptyList[B])]

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product