Open chshersh opened 2 years ago
Hi, its possible to check all three points. In optparse-applicative-common are low level function which can be used to check all three points.
mapParser (\_ x -> optionNames . optMain $ x) sampleParser
gives the list of defined parsers.
What can be done here for this ticket?
CLI guidelines suggestion the following convention for named arguments:
--help
,--version
,--numeric-version
, etc.Is it possible to check such things with
optparse-applicative
? 🤔