structopt icon indicating copy to clipboard operation
structopt copied to clipboard

Parse command line arguments by defining a struct

Results 4 structopt issues
Sort by recently updated
recently updated
newest added

I seems that first character of long-name is used in a short-name. In case: ```c++ struct Options { // oositional flags // ./main [--bar] [--baz] std::optional bar = false; std::optional...

enhancement

With the current implementation, the option handling/parsing only works with a lot of allocations. If the implementation would use `string_view` internally and can save arguments as viewer structs, that could...

In the current [beta release of boost](https://www.boost.org/users/history/version_1_84_0.html), `boost::pfr` comes with a new feature for extracting the struct name from a given type. This way `structopt` could get rid of the...

Using only third party folder keeps this project stuck over the same version always. This PR includes the CMake option to be able to use external dependencies (magic_enum and visit_struct)....