-
I've noticed that |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I'm gonna kinda use this as a store of disjoint thoughts so I don't bog things down with multiple issues/discussions:
|
Beta Was this translation helpful? Give feedback.
-
To reduce the number of functions, it only accepts i32/u32 operands and sometimes i64/u64 operands.
All functions that accept
Sounds like a feature request so it's better to create an issue. Should be easy to fix, eg.
Should be an issue too. |
Beta Was this translation helpful? Give feedback.
To reduce the number of functions, it only accepts i32/u32 operands and sometimes i64/u64 operands.
All functions that accept
i32
operands also acceptu32
operands. In other words, the same trait is implemented twice once fori32
and once foru32
.Sounds like a feature request so it's better to create an issue.
Should be easy to fix, eg.
impl From<As…