pub const fn nevers() -> Empty<Never>
Expand description
Generates all (none) of the Never
s.
The output length is 0.
§Worst-case complexity per iteration
Constant time and additional memory.
§Examples
use itertools::Itertools;
use malachite_base::nevers::nevers;
assert_eq!(nevers().collect_vec(), &[]);