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
^
Currently, the following code throws an error:
using Static static(2) ^ static(3)
The desired/expected output is static(8). Likewise, 2 ^ static(3) and static(2) ^ 3 should both return 8::Int.
static(8)
2 ^ static(3)
static(2) ^ 3
8::Int
Is there any reason not to support ^ for StaticInt? If not, shall I create a PR to add it?
StaticInt
The text was updated successfully, but these errors were encountered:
Only reason not to do it is if it causes a bunch of invalidations. Should be a simple PR to check though
Sorry, something went wrong.
No branches or pull requests
Currently, the following code throws an error:
The desired/expected output is
static(8)
. Likewise,2 ^ static(3)
andstatic(2) ^ 3
should both return8::Int
.Is there any reason not to support
^
forStaticInt
? If not, shall I create a PR to add it?The text was updated successfully, but these errors were encountered: