malachite-base 0.3.2

A collection of utilities, including new arithmetic traits and iterators that generate all values of a type
Documentation
use itertools::Itertools;
use malachite_base::tuples::exhaustive::exhaustive_units;

#[test]
fn test_exhaustive_units() {
    assert_eq!(exhaustive_units().collect_vec(), &[()]);
}