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
When applying comparison operators (e.g., =, <>) between two untyped objects, a check error is returned.
The text was updated successfully, but these errors were encountered:
This is intentional. Ideally, we want to steer away from untyped and towards stronger typing.
Don't say: U1 < U2
U1 < U2
Instead say: Value(U1) < Value(U2)
Value(U1) < Value(U2)
We will coerce if one of the args is known. U1 < N1
U1 < N1
Sorry, something went wrong.
anderson-joyle
No branches or pull requests
When applying comparison operators (e.g., =, <>) between two untyped objects, a check error is returned.
The text was updated successfully, but these errors were encountered: