Function exhaustive_bools
Source pub fn exhaustive_bools() -> ExhaustiveBools
Expand description
Generates both bool
s.
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]);