It would be nice to have some functions for generating random Ints.
I would suggest functions for generating numbers:
with a given bit-length
out of a given range.
I am interested in implementing this feature. After some research I also have an idea how it should work, but I need some hint where it should go? I think a separate trait like in num::bigint would be better than directly including it in the Int trait.
It would be nice to have some functions for generating random Ints. I would suggest functions for generating numbers:
I am interested in implementing this feature. After some research I also have an idea how it should work, but I need some hint where it should go? I think a separate trait like in
num::bigint
would be better than directly including it in theInt
trait.