Improve usability by adding two convenience libraries
Open
- Dominant language
- C#
- Stars
- 5
- Forks
- 0
- Avg merge
- 6m
- Merged PRs (30d)
- 4
Description
Currently, if I want to create say one meter, I always need to write: `Length.Of(1, Si())`.
This is semantically clean but a tad verbose. Hence create two convenience libraries
- Atmoos.Quantities.Convenience
- Atmoos.Quantities.Units.Convenience
that would expose types that'd enable the following syntax:
```csharp
Length oneMetre = 1 * m;
Velocity oneKpH = 1 * km/h;
// similary,
var oneSecond = 1 * s;
var threeOhm = 3 * Ω;
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.