Michael Hordijk
Michael Hordijk
A command may leave the working tree dirty (e.g. the command is applying code formatters to the tree). In such a case, we should stop running tests and allow the...
With the introduction of `Constant`, there was an API introduced for those that allows the `Rep` to be indicated without changing the `Unit` of the constant. Specifically, one can use...
Given some units defined as such[^1]: ```c++ struct PerMille : decltype(Percent{} / mag()); struct PerMyriad : decltype(PerMille{} / mag()); struct PerCentMille : decltype(PerMyriad{} / mag()); struct PartsPerMillion : decltype(PerCentMille{} /...