simdpp::bit_not

From cppreference.com
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.

Contents

Parameters

a - an integer or floating-point vector

Return value

A vector expression evaluating to bitwise ~a.

Equivalent operation

r0 = ~a0
...
rN = ~aN

See also