lib_rapid/
lib.rs

1//! # LibRapid - A general purpose, optimised library for mathematics and computer science.
2//! This crate allows for faster calculations for mathematics, physics, or computer science.
3//! All implementations are optmised for speed, meaning your computations will be faster and more efficient.
4//! Some implementations include mathematical sets or text compression.
5//!
6pub mod math;
7pub mod compsci;
8mod benchmarks;
9pub mod chem;