mathypad 0.1.7

A smart TUI calculator that understands units and makes complex calculations simple.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Unit system for mathypad
//!
//! This module handles all unit-related functionality including:
//! - Unit definitions and conversions
//! - Unit value representation
//! - Unit parsing

mod parser;
mod types;
mod value;

#[cfg(test)]
mod tests;

pub use parser::parse_unit;
pub use types::{Unit, UnitConversionError, UnitType};
pub use value::UnitValue;