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
Hello!
What about this method and the same ones? Now I have to write u == Uint(0) instead of u == 0.
u == Uint(0)
u == 0
The text was updated successfully, but these errors were encountered:
Even if you add equals(Int) in Uint, it won't work.
equals(Int)
Uint
You should write u.v == 0 instead
u.v == 0
Sorry, something went wrong.
Oh, thanks!
Kotlin code cleanup
482485f
No branches or pull requests
Hello!
What about this method and the same ones? Now I have to write
u == Uint(0)
instead ofu == 0
.The text was updated successfully, but these errors were encountered: