operations 0.1.2

Basic algebraic and mathematical expressions for use with dynamic elements
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(illegal_floating_point_literal_pattern)]

pub mod mappings;
pub mod math;
pub mod operations;

pub mod prelude {
    pub use crate::math::*;
    pub use crate::operations::Operation::*;
    pub use crate::operations::*;
}