Function rem¶
function rem(const T1 &, const T2 &) simd¶
template <typename T1, typename T2, typename Tout = std::common_type_t<T1, T2>>
KFR_INTRINSIC Tout rem(const T1& x, const T2& y) Remainder of x divided by y .
Fully qualified name: kfr::rem(const T1 &, const T2 &)
Declared at simd/operators.hpp:549
Function rem¶
function rem(const vec<T, N> &, const vec<T, N> &) simd¶
Returns the element-wise floating-point remainder of vectors x and y.
| T | Floating-point type. |
| N | Number of elements in the vector. |
| x | Dividend vector. |
| y | Divisor vector. |
Element-wise floating-point remainder of x divided by y. |
Fully qualified name: kfr::rem(const vec<T, N> &, const vec<T, N> &)
Declared at simd/round.hpp:177
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.