un_algebra 0.9.0

Simple implementations of selected abstract algebraic structures--including groups, rings, and fields. Intended for self-study of abstract algebra concepts and not for production use.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//!
//! Magma modules.
//!
//! The `magma` module provides sub-modules for abstract algebraic
//! _magmas_. It also provides sub-modules for _additive_ or
//! _multiplicative magmas_.
//!
pub mod magma;
pub mod add_magma;
pub mod mul_magma;


// Make sub-modules visible in this module.
pub use self::magma::*;
pub use self::add_magma::*;
pub use self::mul_magma::*;