narcissistic/lib.rs
1#![deny(missing_docs)]
2#![deny(missing_debug_implementations)]
3#![doc = include_str!("../Readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6
7mod hardcode;
8mod narcissistic;
9
10pub use self::hardcode::*;
11pub use narcissistic::{narcissistic_numbers, NarcissisticNumber, NarcissisticSearcher};