malachite-base 0.4.6

A collection of utilities, including new arithmetic traits and iterators that generate all values of a type
Documentation
1
2
3
4
5
6
7
use malachite_base::random::Seed;
use malachite_base::random::EXAMPLE_SEED;

#[test]
fn test_from_bytes() {
    assert_eq!(Seed::from_bytes(EXAMPLE_SEED.bytes), EXAMPLE_SEED);
}