1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! **Croot** - *Complex Roots*
//!
//! For finding *all* nth-roots

#![no_std]
#![forbid(unsafe_code)]
#![deny(clippy::all)]

extern crate alloc;

pub mod approx;
pub mod period;
pub mod roots;

pub mod prelude {
    use super::*;

    pub use approx::Approx;
    pub use period::Period;
    pub use roots::{complex_root, principal_root, root};
}