algae_rs/
lib.rs

1#![warn(rust_2018_idioms)]
2#![allow(dead_code)]
3
4//! `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.
7
8pub mod algaeset;
9pub mod magma;
10pub mod mapping;