dimensional 0.1.0

Functions, structs, and reference data for working with dimensional values, such as '1 second' and '3 miles per hour'.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Dimensions in use by the International System of Units.
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]
pub enum Dimensions {
    Time,
    Length,
    Mass,
    ElectricCurrent,
    Temperature,
    Substance,
    LuminousIntensity,
    Entropy,
}