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
//!
//! Semigroup modules.
//!
//! The `semigroup` module provides sub-modules for abstract algebraic
//! _semigroups_. It also provides sub-modules for _additive_ or
//! _multiplicative semigroups_.
//!
pub mod semigroup;
pub mod add_semigroup;
pub mod mul_semigroup;


// Make sub-modules visible in this module.
pub use self::semigroup::*;
pub use self::add_semigroup::*;
pub use self::mul_semigroup::*;