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
How to deal with things like amount < 1000 EUR when the currency is not EUR?
amount < 1000 EUR
Looks like it should return always false, but then not(amount < 1000 EUR) should evaluate to false as well.
not(amount < 1000 EUR)
And when combined with things like any(amount < 1000 EUR), the postings should not count.
any(amount < 1000 EUR)
To panic is not always right.
The text was updated successfully, but these errors were encountered:
The good solution is to convert from one currency to another and only panic if that is not possible.
Sorry, something went wrong.
frosklis
No branches or pull requests
How to deal with things like
amount < 1000 EUR
when the currency is not EUR?Looks like it should return always false, but then
not(amount < 1000 EUR)
should evaluate to false as well.And when combined with things like
any(amount < 1000 EUR)
, the postings should not count.To panic is not always right.
The text was updated successfully, but these errors were encountered: