Open eiennohito opened 2 years ago
Right now the parser supports either --foo arg style as OptionPrefixStyle.LINUX or --foo=arg style as OptionPrefixStyle.GNU, but not both at the same time (as getopt or rust CLI libraries usually do).
--foo arg
OptionPrefixStyle.LINUX
--foo=arg
OptionPrefixStyle.GNU
getopt
Right now the parser supports either
--foo arg
style asOptionPrefixStyle.LINUX
or--foo=arg
style asOptionPrefixStyle.GNU
, but not both at the same time (asgetopt
or rust CLI libraries usually do).