Closed Sympatron closed 3 years ago
What do you think about defining type aliases like type MillisDuration<T> = Duration<T, 1, 1000> (or similar) to cut down on typing and mental load? Or even MillisDurationU32 to simplify it even more?
type MillisDuration<T> = Duration<T, 1, 1000>
MillisDurationU32
This would be a good addition for simplicity
I added it in a2230a79e2d2b0f1d22c4c383f575d0aa1bcfc11
What do you think about defining type aliases like
type MillisDuration<T> = Duration<T, 1, 1000>
(or similar) to cut down on typing and mental load? Or evenMillisDurationU32
to simplify it even more?