given_SingleValueConverter_Backend
Attributes
- Graph
-
- Supertypes
-
trait SingleValueConverter[Backend]trait ValueConverter[Backend]class Objecttrait Matchableclass Any
- Self type
Members list
Value members
Concrete methods
Inherited methods
Transformation of argument name to argument definition in help.
Transformation of argument name to argument definition in help.
Attributes
- Inherited from:
- ValueConverter
Map the converter to another value. This method is different from .map because it can return an error (without resorting to exceptions, returning Left(msg)) or can filter out unsupported values (by returning Right(None)).
Map the converter to another value. This method is different from .map because it can return an error (without resorting to exceptions, returning Left(msg)) or can filter out unsupported values (by returning Right(None)).
Attributes
- Inherited from:
- ValueConverter
Maps the converter to another value:
Maps the converter to another value:
intConverter.map(_+2) // and you get a "biased converter"
Attributes
- Inherited from:
- ValueConverter
Takes a list of arguments to all option invocations: for example, "-a 1 2 -a 3 4 5" would produce List(("a",List(1,2)),("a",List(3,4,5))).
Takes a list of arguments to all option invocations: for example, "-a 1 2 -a 3 4 5" would produce List(("a",List(1,2)),("a",List(3,4,5))).
-
parse returns Left, if there was an error while parsing.
-
if no option was found, it returns Right(None).
-
if option was found, it returns Right(...).
Attributes
- Inherited from:
- SingleValueConverter
Attributes
- Inherited from:
- ValueConverter
Inherited fields
Type of parsed argument list.