Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2a1389f..08dd26d 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,7 @@ fn main() -> u8 {
it should work for most expressions.
also implements some modules that let it work with some core intrinsics (`f*_fast`, `f*_algebraic`). (nightly only!)
+and also for `saturating` math and `wrapping` math.
## why
@@ -54,3 +55,5 @@ fn madd<const N: usize>(x: [[f32; 3]; N]) -> [f32; N] {
lower::algebraic! { x.map(|[a, b, c]| a * b + c) }
}
```
+
+this is also great for wrapping/saturating math.