Skip to content

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.

Template parameters
T Element type of the vectors.
Ns Lengths of the input vectors.
Parameters
vs Vectors to concatenate, in left-to-right order.
Returns
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.