NoSuccess

sealed abstract class NoSuccess[+X] extends Result[Nothing, Nothing, X]
class Result[Nothing, Nothing, X]
class Object
trait Matchable
class Any
class Error[X]
object Failure

Value members

Concrete methods

def flatMap[Out2, B](f: (Nothing, Nothing) => Result[Out2, B, Nothing]): Result[Out2, B, X]
def map[B](f: Nothing => B): Result[Nothing, B, X]
def map[Out2, B](f: (Nothing, Nothing) => (Out2, B)): Result[Out2, B, X]
def mapOut[Out2](f: Nothing => Out2): Result[Out2, Nothing, X]
def orElse[Out2, B](other: => Result[Out2, B, Nothing]): Result[Out2, B, X]
def out: Nothing
def toOption: Option[Nothing]
def value: Nothing

Inherited methods

def error: X
Inherited from
Result