Function concat¶
function concat(const vec<T, Ns> &...) simd¶
template <typename T, size_t... Ns>
KFR_INTRINSIC vec<T, csum<size_t, Ns...>()> concat(const vec<T, Ns>&... vs) noexcept Concatenates any number of vectors into a single vector.
| T | Element type of the vectors. |
| Ns | Lengths of the input vectors. |
| vs | Vectors to concatenate, in left-to-right order. |
A vector of length csum(Ns...) containing all input elements. |
Fully qualified name: kfr::concat(const vec<T, Ns> &...)
Declared at simd/shuffle.hpp:147
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.