uu_factor 0.0.17

factor ~ (uutils) display the prime factors of each NUMBER
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// * This file is part of the uutils coreutils package.
// *
// * (c) 2020 nicoo            <nicoo@debian.org>
// *
// * For the full copyright and license information, please view the LICENSE file
// * that was distributed with this source code.

mod gcd;
pub use gcd::gcd;

pub(crate) mod traits;

mod modular_inverse;
pub(crate) use modular_inverse::modular_inverse;

mod montgomery;
pub(crate) use montgomery::{Arithmetic, Montgomery};