prime-factor 0.7.0

A prime number factorizer written in Rust
Documentation
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. 
}