Result

sealed trait Result[+T]

Represents what comes out of an attempt to invoke an Main. Could succeed with a value, but could fail in many different ways.

Companion:
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def flatMap[V](f: T => Result[V]): Result[V]
def map[V](f: T => V): Result[V]