Variadic

zio.cli.Args.Variadic
final case class Variadic[+A](value: Args[A], min: Option[Int], max: Option[Int]) extends Args[List[A]]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Args[List[A]]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def ??(that: String): Args[List[A]]
override def isValid(input: String, conf: CliConfig): IO[ValidationError, List[String]]

Attributes

Definition Classes
Input
override def parse(args: List[String], conf: CliConfig): IO[ValidationError, (List[String], List[String])]

Attributes

Definition Classes
Input
def uid: Option[String]
def validate(args: List[String], conf: CliConfig): IO[ValidationError, (List[String], List[A])]

Inherited methods

final def *: Args[List[List[A]]]

Attributes

Inherited from:
Args
final def +[A1 >: List[A]]: Args[::[A1]]

Attributes

Inherited from:
Args
final def ++[B](that: Args[B])(implicit zippable: Zippable[List[A], B]): Args[zippable.Out]

Attributes

Inherited from:
Args
final def atLeast(min: Int): Args[List[List[A]]]

Attributes

Inherited from:
Args
final def atMost(max: Int): Args[List[List[A]]]

Attributes

Inherited from:
Args
final def between(min: Int, max: Int): Args[List[List[A]]]

Attributes

Inherited from:
Args
final def map[B](f: (List[A]) => B): Args[B]

Attributes

Inherited from:
Args
final def mapOrFail[B](f: (List[A]) => Either[HelpDoc, B]): Args[B]

Attributes

Inherited from:
Args
final def mapTry[B](f: (List[A]) => B): Args[B]

Attributes

Inherited from:
Args

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
final def repeat: Args[List[List[A]]]

Attributes

Inherited from:
Args
final def repeat1[A1 >: List[A]]: Args[::[A1]]

Attributes

Inherited from:
Args

Concrete fields

lazy val helpDoc: HelpDoc
lazy val maxSize: Int
lazy val minSize: Int
lazy override val shortDesc: String

Inherited fields

lazy val tag: String

Attributes

Inherited from:
Args