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
This results in the output array erroneously no longer being Array<u8> or Array<bool> (in Rust versions where bool is guaranteed to be 8 bits), and instead being the same an the input types in most scenarios. Another macro needs to be made here that specifically does comparison operations.
The text was updated successfully, but these errors were encountered:
In the code for macro
overloaded_binary_func
here the trait bound is present:The macro then is used for comparison operators:
This results in the output array erroneously no longer being
Array<u8>
orArray<bool>
(in Rust versions where bool is guaranteed to be 8 bits), and instead being the same an the input types in most scenarios. Another macro needs to be made here that specifically does comparison operations.The text was updated successfully, but these errors were encountered: