dims

This will allow for storing values like distance or mass, as well as preventing adding grams to feet.

The intent is for these values to be kept in-memory as Mass or Length, without having to worry about the unit except for creation of the value, and when accessing it (for display, storage, etc).

IMPORTANT

This is still a Work-In-Progress. Expect rough-edges, but I am working to smooth them out.

Usage

If you just want to use the pre-generated units (Work in progress: creating more):

```rust // Be sure you include prelude; this exposes required traits use dims::prelude::; use dims::us::; use dims::si::*;

let feet = FOOT.from(12.5); let mm = MILLIMETRE.from(317.5); asserteq!(feet, mm); // You can add between different systems // They are all stored as metre here, anyway let another = feet + mm; // You can also multiply to get area (and on further to get volume) let area = feet * mm; asserteq!(area, SQFT.from(156.25)); let mass = GRAM.from(18.25); // You can also create them the other way around let thisworks = Measure::new(&INCH,0.125); // You can grab the stored value as a float via let raw = mm.valas(&INCH); // The compiler will not allow you to add between systems: // let nope = mass + area; // <== Compiler throws an error ```

Base Structs and Traits

dims


This contains a set of pre-made systems and units. These will be added to as time goes on.

The current systems are:

| System | Base Unit | debug_us | | ----------- | ----------- | ----------- | | Length | Metre | Inch | | Area | Sq Metre | Square Inch | | Volume | Cubic Metre | Cubic Inch | | Mass | Gram | Pound | | Temperature | Kelvin* | Fahrenheit |

*Notes on Temperature:

Other Notes

Performance

There is no measurable impact on release performance compared to the stored value (from what my very basic tests can show). The Measure struct is [repr(transparent)], so everything but the value itself is optimized away. Debug mode code does have a hit to performance, however.

Crate options for dims

IMPORTANT

Selecting us or debug_us in the above options will NOT change the base unit. It will still be stored in SI.