1 2 3 4 5
fn main() { let mut w = primefactor::candidates::PrimeWheel210::from(100); println!("from 100: {}", w.next().unwrap()); // should be 101, base=101 // Wait, wait... from() sets the wheel such that next() returns >= start. }