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
As in title. As any integer type can be expressed as BigInt and any unsigned integer can be expressed as BigUint it would be useful to implement From<T> trait for them. It would allow functions to take T: Into<BigInt> as parameter and call it with "bare" integers without weird calls and unwraps.
The text was updated successfully, but these errors were encountered:
As in title. As any integer type can be expressed as
BigInt
and any unsigned integer can be expressed asBigUint
it would be useful to implementFrom<T>
trait for them. It would allow functions to takeT: Into<BigInt>
as parameter and call it with "bare" integers without weird calls and unwraps.The text was updated successfully, but these errors were encountered: