Giacomo Fenzi
Giacomo Fenzi
Currently, running ` BigUint::zero().is_multiple_of(&BigUint::zero())` panics, since the implementation attemps to perform a modular division https://github.com/rust-num/num-integer/blob/d5267dc842ea730b87cb4610f7ff39adacd81a2f/src/lib.rs#L888 However, 0 is indeed a multiple of 0 and as such true should be returned....
I've installed Visual Studio 2015 RC on a clean version of windows. I've then installed the Minecraft Mod pack and the java language support, however, whenever I create a console...
Apparently, the ordering of the command arguments was giving issue to some users (me included) as detailed in #19 . Not sure why this is needed, as the help for...
Especially when prototyping a new protocol, having a accurate field operation counts is very important. My proposal would be to add this behind a feature flag, adding a globally accessible...
As per title. When constructing a Merkle tree we pass in `&[LeafType]` which is then cloned and stored in the struct, never to be accessed again (it is used internally...