primes/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
mod cache;
mod basic;
mod sieve;
mod under1000;
mod under100000;

pub use cache::Cache;
pub use basic::{is_prime, primes, Primes};
pub use sieve::Sieve;
pub use under1000::UNDER_1000;
pub use under100000::UNDER_100000;