final case class Success[+A](value: A) extends Uninterrupted[Nothing, A] with Product with Serializable
Instance Constructors
- new Success(value: A)
Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- def asFailure: None.type
- final def asInstanceOf[T0]: T0
- def asSuccess: Option[A]
- def clone(): AnyRef
- final def eq(arg0: AnyRef): Boolean
- def finalize(): Unit
- def flatMap[E1, B](f: (A) => Exit[E1, B]): Exit[E1, B]
- final def getClass(): Class[_ <: AnyRef]
- def isFailure: Boolean
- final def isInstanceOf[T0]: Boolean
- final def isInterrupted: Boolean
- def isSuccess: Boolean
- final def isUninterrupted: Boolean
- def leftMap[E1](f: (Nothing) => E1): Success.this.type
- def map[B](f: (A) => B): Success[B]
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- def productElementNames: Iterator[String]
- final def synchronized[T0](arg0: => T0): T0
- def toThrowableEither(implicit ev: <:<[Nothing, Throwable]): Either[Throwable, A]
- def toTry(implicit ev: <:<[Nothing, Throwable]): Try[A]
- val value: A
- final def wait(): Unit
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
Inherited from Product
Inherited from Equals
Inherited from Exit[Nothing, A]
Inherited from AnyRef
Inherited from Any