I have some options that are quite verbose like -length
-strength
and I would like to allow guessing for them, so that the user can cut their names.
On the other hand some options have short names that include each other like -K1
-K10
and for those of course guessing should be disabled.
I also have a positional option and I would like to keep all the standard checks on the options: for instance I don't want to allow for unknown (mistyped) options.
I would like to know if there exists a way to achieve this with Boost::program_options...