Function concat2¶
function concat2(const vec<T, N1> &, const vec<T, N2> &) simd¶
template <typename T, size_t N1, size_t N2>
KFR_INTRINSIC vec<T, N1 + N2> concat2(const vec<T, N1>& x, const vec<T, N2>& y) noexcept Concatenates two vectors into a single vector.
| T | Element type of the vectors. |
| N1 | Length of the first vector. |
| N2 | Length of the second vector. |
| x | First vector. |
| y | Second vector. |
A vector of length N1 + N2 containing x followed by y. |
Fully qualified name: kfr::concat2(const vec<T, N1> &, const vec<T, N2> &)
Declared at simd/shuffle.hpp:163
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.