stdarch
stdarch copied to clipboard
Add an implementation of not to __m256i and possibly other types.
For feature parity with C implementations, we could consider a (const) implementation of not (!) for __m256i
, and probably other types.
Justification, eg code examples in answer to https://stackoverflow.com/questions/42613821/is-not-missing-from-sse-avx?rq=1 use C's ~
operator.
Operators on vector types are a non-standard extension which we don't support.
We should support it long term, but that would be an RFC debate of its own.
@Amanieu @Lokathor thank you. I won't be raising a RFC for this.