simdpp::bit_not

From libsimdpp-docs
template<unsigned N, class V>
V<N, DETAIL> bit_not( const any_vec<N,V>& a );

Computes bitwise NOT of integer or floating-point vector.

The return type is a vector expression of N bytes.

Parameters[edit]

a - an integer or floating-point vector

Return value[edit]

A vector expression evaluating to bitwise ~a.

Equivalent operation[edit]

r0 = ~a0
...
rN = ~aN

See also[edit]