trait VABackCompat[E, A] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- VABackCompat
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- final class WithFilter extends AnyRef
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
Deprecated Value Members
-
def
asEither: Either[Seq[E], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use toEither
-
def
asOpt: Option[A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use toOption
-
def
collect[EE >: E, B](otherwise: EE)(p: PartialFunction[A, B]): Validated[Seq[EE], B]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) collect is deprecated
-
def
fail: FailProjection[E, A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use leftMap
-
def
filter[EE >: E](otherwise: EE)(p: (A) ⇒ Boolean): Validated[Seq[EE], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) filter is deprecated
-
def
filter(p: (A) ⇒ Boolean): Validated[Seq[E], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) filter is deprecated
-
def
filterNot(p: (A) ⇒ Boolean): Validated[Seq[E], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) filterNot is deprecated
-
def
filterNot[EE >: E](error: EE)(p: (A) ⇒ Boolean): Validated[Seq[EE], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) filterNot is deprecated
-
def
get: A
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use toOption.get
-
def
isFailure: Boolean
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use isInvalid
-
def
isSuccess: Boolean
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use isValid
-
def
success: Validated[Seq[E], A]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) use map
-
def
viaEither[EE, AA](f: (Either[Seq[E], A]) ⇒ Either[Seq[EE], AA]): Validated[Seq[EE], AA]
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) viaEither is deprecated
-
def
withFilter(p: (A) ⇒ Boolean): WithFilter
- Annotations
- @deprecated
- Deprecated
(Since version 2.0) withFilter is deprecated