lib_rapid 0.7.0

LibRapid - a library specifically built for mathematical calculations and scientific applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This part of the library is designed for mathematics and physics - evaluating postfix-notation expressions, unions on customised sets or temperature conversion;Those features are among those implemented for LibRapid.
pub mod general;
pub mod constants;
pub mod vectors;
pub mod postfix;
pub mod unit_conversion;
pub mod primes;
pub mod sets;
pub mod equations;
pub mod complex;
pub mod ratings;