We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now, if I was actually making a compiler, I probably would use a different argument parsing library. How would we deal with multiple options?
If we ran:
./a.out -Ooption1 -Ooption2
I would expect to get something along the lines of {"option1", "option2"}. Is it possible to do this, or do I have to implement this myself?
{"option1", "option2"}
The text was updated successfully, but these errors were encountered:
no builtin support, implement via callback? add a raw opt type with which users can write any logic to parse opt value?
Sorry, something went wrong.
No branches or pull requests
Now, if I was actually making a compiler, I probably would use a different argument parsing library. How would we deal with multiple options?
If we ran:
I would expect to get something along the lines of
{"option1", "option2"}
. Is it possible to do this, or do I have to implement this myself?The text was updated successfully, but these errors were encountered: