Skip to main content

rk_primes/
lib.rs

1mod basic;
2mod cache;
3mod sieve;
4mod under1000;
5mod under100000;
6
7pub use basic::{Primes, is_prime, primes};
8pub use cache::Cache;
9pub use sieve::Sieve;
10pub use under1000::UNDER_1000;
11pub use under100000::UNDER_100000;