NoSuccess

org.json4s.scalap.NoSuccess
sealed abstract class NoSuccess[+X] extends Result[Nothing, Nothing, X]

Attributes

Source:
Result.scala
Graph
Supertypes
class Result[Nothing, Nothing, X]
class Object
trait Matchable
class Any
Known subtypes
class Error[X]
object Failure.type

Members list

Concise view

Value members

Concrete methods

def flatMap[Out2, B](f: (Nothing, Nothing) => Result[Out2, B, Nothing]): Result[Out2, B, X]

Attributes

Source:
Result.scala
def map[B](f: Nothing => B): Result[Nothing, B, X]

Attributes

Source:
Result.scala
def map[Out2, B](f: (Nothing, Nothing) => (Out2, B)): Result[Out2, B, X]

Attributes

Source:
Result.scala
def mapOut[Out2](f: Nothing => Out2): Result[Out2, Nothing, X]

Attributes

Source:
Result.scala
def orElse[Out2, B](other: => Result[Out2, B, Nothing]): Result[Out2, B, X]

Attributes

Source:
Result.scala
def out: Nothing

Attributes

Source:
Result.scala
def toOption: Option[Nothing]

Attributes

Source:
Result.scala
def value: Nothing

Attributes

Source:
Result.scala

Inherited methods

def error: X

Attributes

Inherited from:
Result
Source:
Result.scala