Function operator>>¶
function operator>>(const vec<T1, N> &, unsigned int) simd¶
template <typename T1, size_t N> \
constexpr KFR_INTRINSIC vec<T1, N> operator op(const vec<T1, N>& x, unsigned y) { … } Fully qualified name: kfr::operator>>(const vec<T1, N> &, unsigned int)
Declared at simd/operators.hpp:144
Function operator>>¶
function operator>>(const T1 &, const vec<T2, N> &) simd¶
template <simd_compat T1, typename T2, size_t N> \
requires(vec_rank<T1> < 1 + vec_rank<T2>) \
constexpr KFR_INTRINSIC vec<T1, N> operator op(const T1& x, const vec<T2, N>& y) { … } Fully qualified name: kfr::operator>>(const T1 &, const vec<T2, N> &)
Declared at simd/operators.hpp:144
Function operator>>¶
function operator>>(const vec<T1, N> &, const vec<T2, N> &) simd¶
template <simd_compat T1, typename T2, size_t N> \
requires(vec_rank<T1> == vec_rank<T2>) \
constexpr KFR_INTRINSIC vec<T1, N> operator op(const vec<T1, N>& x, const vec<T2, N>& y) { … } Fully qualified name: kfr::operator>>(const vec<T1, N> &, const vec<T2, N> &)
Declared at simd/operators.hpp:144
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.