harness.cli.ParsedArg.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-cli_3 Show documentation
Show all versions of harness-cli_3 Show documentation
Miscellaneous libraries/utilities for Scala.
package harness.cli
sealed trait ParsedArg {
val names: List[LongReference]
val args: List[Arg]
}
final case class ParsedValueArg(names: List[LongName], args: List[Arg.ValueLike]) extends ParsedArg
final case class ParsedParamArg(names: List[LongReference], args: List[Arg.ParamLike]) extends ParsedArg
© 2015 - 2025 Weber Informatics LLC | Privacy Policy