Function bitwisexor¶
function bitwisexor(float, float) simd¶
Bitwise XOR (exclusive OR) of x and y . Returns the bits that differ between the two operands.
Fully qualified name: kfr::bitwisexor(float, float)
Declared at simd/operators.hpp:211
Function bitwisexor¶
function bitwisexor(double, double) simd¶
Bitwise XOR (exclusive OR) of x and y . Returns the bits that differ between the two operands.
Fully qualified name: kfr::bitwisexor(double, double)
Declared at simd/operators.hpp:222
Function bitwisexor¶
function bitwisexor(const T1 &, const T2 &) simd¶
template <typename T1, typename T2>
KFR_INTRINSIC std::common_type_t<T1, T2> bitwisexor(const T1& x, const T2& y) Bitwise XOR (exclusive OR) of x and y .
Returns the bits that differ between the two operands.
Fully qualified name: kfr::bitwisexor(const T1 &, const T2 &)
Declared at simd/operators.hpp:296
Function bitwisexor¶
function bitwisexor(initialvalue<T>) simd¶
template <typename T>
constexpr KFR_INTRINSIC T bitwisexor(initialvalue<T>) { … } Identity element for bitwisexor (returns zero).
Fully qualified name: kfr::bitwisexor(initialvalue<T>)
Declared at simd/operators.hpp:302
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.