14 lines
225 B
Rust
14 lines
225 B
Rust
#[macro_use]
|
|
mod conversions;
|
|
#[macro_use]
|
|
mod complete_arith;
|
|
mod primes;
|
|
mod signed;
|
|
mod unsigned;
|
|
#[cfg(test)]
|
|
mod gold_tests;
|
|
|
|
pub use self::signed::SCN;
|
|
pub use self::unsigned::{BarrettUCN,UCN};
|
|
pub use self::primes::*;
|