Safe Haskell | Safe-Inferred |
---|---|
Language | GHC2021 |
Accepting arguments to be passed through to a sub-process.
Synopsis
- argsArgument :: Mod ArgumentFields [String] -> Parser [String]
- argsOption :: Mod OptionFields [String] -> Parser [String]
- cmdOption :: Mod OptionFields (String, [String]) -> Parser (String, [String])
Documentation
argsArgument :: Mod ArgumentFields [String] -> Parser [String] Source #
An argument which accepts a list of arguments
e.g. --ghc-options="-X P.hs "this""
.
argsOption :: Mod OptionFields [String] -> Parser [String] Source #
An option which accepts a list of arguments
e.g. --ghc-options="-X P.hs "this""
.