uy icon indicating copy to clipboard operation
uy copied to clipboard

A typesafe, flexible, simple, and user-friendly unit system library for Rust that has good error messages.

Results 1 uy issues
Sort by recently updated
recently updated
newest added

Currently, hash is implemented like this: ```rust impl hash::Hash for Quantity { fn hash(&self, state: &mut H) { self.val.hash(state); } } ``` which disregards units (i.e. 1kg would have the...