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
17
//!
//! Commutative group modules.
//!
//! The `com_group` module provides sub-modules for abstract algebraic
//! _commutative_ _groups_. It also provides sub-modules for _additive_
//! or _multiplicative_ _commutative_ _groups_.
//!
pub mod com_group;
pub mod add_com_group;
pub mod mul_com_group;


// Make sub-modules visible in this module.
pub use self::com_group::*;
pub use self::add_com_group::*;
pub use self::mul_com_group::*;