My experience using this library #716
mathisloge
started this conversation in
Show and tell
Replies: 4 comments 3 replies
|
Thank you for your kind words! It really matters a lot to us. |
3 replies
|
Why do you need that and why is there no value assigned? Typically, users should not have a need to inline constexpr auto gram_per_litre = si::gram / si::litre; |
0 replies
|
The second line should probably look like: using StepsPerSecondSq = quantity<step / square(si::second)>;The fact that we can divide a quantity by a unit is unfortunate and should probably not be done on purpose like above. |
0 replies
|
Why is this unit defined as dimensionless? Isn't it a unit of mass? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I’ve been looking for a small side project to try out this library, and I’m really excited!
Using this library has given me so much more confidence when working with different units. It’s already saved me several times, especially when displaying units in a Qt UI — formatting units to the desired UI representation is now just a one-liner!
Great work on this project! I’m really looking forward to seeing it become part of the standard someday.
For anyone interested, here’s what I’ve been working on:
https://github.com/mathisloge/cocktail-maker/
Here’s how I’ve used the library:
Really fantastic work — thanks so much for creating this!
All reactions