Implement core::ops (#10)

* Add vector-vector arithmetic ops
* Add operators and integer conversions for masks
* Add unary traits
* Implement Index and IndexMut
* Implement by-ref ops for masks
* Document intrinsics
* Implement format traits for masks
* Add floating point ops tests
* Add integer tests
* Add mask tests
This commit is contained in:
Caleb Zulawski
2020-10-01 22:50:15 -04:00
committed by GitHub
parent fa6bb81e44
commit 43dabd1aea
33 changed files with 2233 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
#[macro_use]
pub mod biteq;
pub mod lanewise;