1#![warn(rust_2018_idioms)]
2#![allow(dead_code)]
34//! `algae` is a collection of abstract algebraic structures implemented in
5//! Rust. It begins by defining sets and eventually builds up to vector spaces
6//! and Lie groups.
78pub mod algaeset;
9pub mod magma;
10pub mod mapping;