Value

sbt.Result.Value
final case class Value[+A](value: A) extends Result[A]

Indicates the task completed normally and produced the given value.

Attributes

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def toEither: Either[Incomplete, A]

Attributes

Inherited from:
Result