Result

mainargs.Result
See theResult companion object
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.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Concrete methods

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