pub fn exhaustive_bools() -> ExhaustiveBools
Expand description

Generates both bools.

The output length is 2.

§Worst-case complexity per iteration

Constant time and additional memory.

§Examples

use itertools::Itertools;
use malachite_base::bools::exhaustive::exhaustive_bools;

assert_eq!(exhaustive_bools().collect_vec(), &[false, true]);