You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far, there's no support for bitwise not in Cairo 1. Cairo 0 offered a bitwise_not function. Rust has ! that uses the Not trait. Cairo 1 already declares a Not trait, so what's missing is only the implementation of it on the appropriate types.
sounds like a nice idea - although my c++ sensitivities confuses me in this case (! always sounds boolean to me, not bitwise) - we should ask around a bit around this before deciding (was a bit surprised myself that rust does work that way)
Feature Request
Describe the Feature Request
So far, there's no support for bitwise not in Cairo 1. Cairo 0 offered a
bitwise_not
function. Rust has!
that uses the Not trait. Cairo 1 already declares a Not trait, so what's missing is only the implementation of it on the appropriate types.Describe Preferred Solution
The text was updated successfully, but these errors were encountered: