ognlib/
lib.rs

1//! # ognlib
2//!
3//! This is a code that I wrote to practice Rust. There is a big chance that there is some more
4//! efficient code already in Crates.io. Nevertheless, with this code I can better learn Rust and
5//! features it has.
6
7#![no_std]
8
9pub mod num {
10    pub mod methods;
11    pub mod power;
12    pub mod radix;
13}
14
15pub mod algorithm {
16    pub mod extra;
17    pub mod prime;
18    pub mod sort;
19}
20
21mod macros;