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
https://en.cppreference.com/w/c/language/operator_arithmetic
The behavior is undefined if rhs is negative or is greater or equal the number of bits in the promoted lhs.
///| pub fn Int::op_shl(self : Int, other : Int) -> Int = "%i32_shl" ///| pub fn Int::op_shr(self : Int, other : Int) -> Int = "%i32_shr"
I recommend the following API
///| pub fn Int::op_shl(self : Int, other : UInt) -> Int ///| pub fn Int::op_shr(self : Int, other : UInt) -> Int
and if greater or equal the number of bits in the promoted lhs, I think we need to panic in all backend.
Int
Int64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://en.cppreference.com/w/c/language/operator_arithmetic
I recommend the following API
and if greater or equal the number of bits in the promoted lhs, I think we need to panic in all backend.
Int
andInt64
#241The text was updated successfully, but these errors were encountered: