pub const fn nevers() -> Empty<Never>
Expand description

Generates all (none) of the Nevers.

The output length is 0.

Worst-case complexity per iteration

Constant time and additional memory.

Examples

extern crate itertools;

use itertools::Itertools;
use malachite_base::nevers::nevers;

assert_eq!(nevers().collect_vec(), &[]);