You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is a very common case which becomes very verbose, and it includes
unit information that is completely irrelevant (zero is zero in any
unit).
Signed-off-by: Leandro Lucarella <[email protected]>
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,15 @@
13
13
14
14
## New Features
15
15
16
-
- Add `abs()` support for quantities.
17
-
- Add quantity class `Frequency` for frequency values.
18
-
- Quantities can now be multiplied with `Percentage` types.
19
-
-`FormulaEngine` arithmetics now supports scalar multiplication with floats and addition with Quantities.
20
-
- Add a `isclose()` method on quantities to compare them to other values of the same type. Because `Quantity` types are just wrappers around `float`s, direct comparison might not always be desirable.
16
+
- Quantities
17
+
18
+
* Add `abs()`.
19
+
* Add a `isclose()` method on quantities to compare them to other values of the same type. Because `Quantity` types are just wrappers around `float`s, direct comparison might not always be desirable.
20
+
* Add `zero()` constructor (which returns a singleton) to easily get a zero value.
21
+
* Add multiplication by `Percentage` types.
22
+
* Add a new quantity class `Frequency` for frequency values.
23
+
24
+
-`FormulaEngine` arithmetics now supports scalar multiplication with floats and addition with Quantities
0 commit comments