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
Some APIs define the true/false state based on existence of the node.
So for example:
<root> <option/> </root>
would evaluate option to be true while:
option
true
<root> </root>
would evaluate option to be false (or nil, in any case falsy).
false
This can't be done with the current Boolean type, and implementing it on top would break the compatibility, so it would need to be a new type.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this @hellcp, I'll see how this can be accommodated.
Sorry, something went wrong.
mvz
No branches or pull requests
Some APIs define the true/false state based on existence of the node.
So for example:
would evaluate
option
to betrue
while:
would evaluate
option
to befalse
(or nil, in any case falsy).This can't be done with the current Boolean type, and implementing it on top would break the compatibility, so it would need to be a new type.
The text was updated successfully, but these errors were encountered: