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
What would be the proper way to serialize BigInteger to byte array, and back? There is a "toByteArray" method, but the "fromBytes" factory accepts two parameters (int signum, List magnitude) - shouldn't this method be modified to accept just bytes?
On a separate subject (don't want to create two threads), I wonder if this project is still maintained/actively used? Just found another library (https://github.com/a14n/dart-rational), and it does look pretty good...
The text was updated successfully, but these errors were encountered:
there is a fromByteArray method in the dartvm implementation. we probably should move that to v8 implementation too and add it to public interface.
this library is more optimized if you want to use the same lib for both js and dartvm, because on dartvm it uses the native big int, so it's much faster than any custom structure for big int.
What would be the proper way to serialize BigInteger to byte array, and back? There is a "toByteArray" method, but the "fromBytes" factory accepts two parameters (int signum, List magnitude) - shouldn't this method be modified to accept just bytes?
On a separate subject (don't want to create two threads), I wonder if this project is still maintained/actively used? Just found another library (https://github.com/a14n/dart-rational), and it does look pretty good...
The text was updated successfully, but these errors were encountered: