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
Operators like optional and alias work on Single only. This way it's not possible to do Options.bool("fullname", true).alias("f")
optional
alias
Single
Options.bool("fullname", true).alias("f")
Single should be an implementation detail instead. All constructors and operations should return Options[A].
Options[A]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Operators like
optional
andalias
work onSingle
only. This way it's not possible to doOptions.bool("fullname", true).alias("f")
Single
should be an implementation detail instead. All constructors and operations should returnOptions[A]
.The text was updated successfully, but these errors were encountered: