ParseResult

zio.cli.figlet.ParseResult
See theParseResult companion class
object ParseResult

Attributes

Companion
class
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

final case class Err(e: () => String) extends ParseResult[Nothing, Nothing]

Attributes

Supertypes
class ParseResult[Nothing, Nothing]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
final case class Ok[+R, +A](r: R, a: A) extends ParseResult[R, A]

Attributes

Supertypes
class ParseResult[R, A]
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def error(e: => String): Err