malachite-base 0.3.2

A collection of utilities, including new arithmetic traits and iterators that generate all values of a type
Documentation
use malachite_base::test_util::runner::Runner;

pub(crate) fn register(runner: &mut Runner) {
    cmp::register(runner);
    eq::register(runner);
    from_str::register(runner);
    hash::register(runner);
    to_string::register(runner);
}

mod cmp;
mod eq;
mod from_str;
mod hash;
mod to_string;