1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
    Appellation: acme-core <library>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Core
//!
//! The core module provides the fundamental building blocks for the Acme library.
//! One of the primary focuses of the library is to provide a set of primitives and utilities
//! for interpreting various operations. The core module is the foundation for the rest of the
//! library, and it is designed to be as lightweight as possible.
//!
#[cfg(not(feature = "std"))]
extern crate alloc;

// pub use self::utils::*;

#[macro_use]
pub(crate) mod macros;
#[macro_use]
pub(crate) mod utils;

pub mod error;
pub mod id;
#[doc(hidden)]
pub mod math;
#[macro_use]
pub mod ops;
pub mod specs;
pub mod types;

pub mod prelude {
    pub use crate::error::*;
    pub use crate::id::*;
    pub use crate::nested;
    pub use crate::ops::prelude::*;
    pub use crate::specs::prelude::*;
    pub use crate::types::*;
}