harness.cli

package harness.cli

Members list

Concise view

Type members

Classlikes

sealed trait Arg

Attributes

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

Attributes

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

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final case class FinalizedParser[+T](usedParams: Set[Name], helpMessage: HelpMessage, helpExtraMessage: HelpMessage, parse: IndexedArgs => Result[T])

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Self type

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
sealed trait HelpMessage

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Joined
trait Simple
class Indent
class Text

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
final case class Indexed[+V](value: V, idx: Int)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final case class LongName extends Name

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Name
class Object
trait Matchable
class Any
Self type
object LongName

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
sealed abstract class Name(val showName: String)

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class LongName
class ShortName
class Digit
class Letter
sealed trait Param

Attributes

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

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Param.type
trait Parser[T]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
object Parser

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Parser.type
sealed trait ParsingFailure

Attributes

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

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
sealed abstract class ShortName(val name: Char) extends Name

Attributes

Companion:
object
Graph
Supertypes
class Name
class Object
trait Matchable
class Any
Known subtypes
class Digit
class Letter
Self type

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
sealed abstract class ShortNameBuilder[T <: ShortName](val partial: PartialFunction[Char, T])(implicit ct: ClassTag[T])

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object Digit.type
object Letter.type
object LowerLetter.type
object UpperLetter.type
object ShortName.type
Self type

Types

opaque type FindFunction[+A]
type IndexedArgs = List[Indexed[Arg]]

Extensions

Extensions

extension [A](self: () => List[Indexed[A]])
def ++[A2 >: A](other: FindFunction[List[Indexed[A2]]]): () => List[Indexed[A2]]
extension [A](self: () => A)
def as[A2](f: => A2): () => A2
def map[A2](f: A => A2): () => A2
def toParseFunction(primaryParam: Param): IndexedArgs => ParseResult[A]
def ||[A2 >: A](other: FindFunction[A2]): () => A2
extension [A](self: () => TmpResult[A])
def constValue[V](v: => V): () => V
def manyValues: () => List[Indexed[String]]
def noValues: () => A
def singleValue: () => String
def singleValueWithName: () => (A, String)