Function concat4¶
function concat4(const vec<T, N> &, const vec<T, N> &, const vec<T, N> &, const vec<T, N> &) simd¶
template <typename T, size_t N>
KFR_INTRINSIC vec<T, N * 4> concat4(const vec<T, N>& a, const vec<T, N>& b, const vec<T, N>& c,
const vec<T, N>& d) noexcept Concatenates four equal-length vectors into a single vector.
| T | Element type of the vectors. |
| N | Length of each input vector. |
| a | First vector. |
| b | Second vector. |
| c | Third vector. |
| d | Fourth vector. |
A vector of length N * 4 containing a, b, c, d in order. |
Fully qualified name: kfr::concat4(const vec<T, N> &, const vec<T, N> &, const vec<T, N> &, const vec<T, N> &)
Declared at simd/shuffle.hpp:181
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.