Function add¶
function add(const T &) simd¶
template <typename T>
constexpr KFR_INTRINSIC T add(const T& x) { … } Identity add (single argument).
Fully qualified name: kfr::add(const T &)
Declared at simd/operators.hpp:360
Function add¶
function add(const T1 &, const T2 &, const Ts &...) simd¶
template <numeric T1, numeric T2, numeric... Ts>
constexpr KFR_INTRINSIC std::common_type_t<T1, T2, Ts...> add(const T1& x, const T2& y, const Ts&... rest) { … } Returns sum of all the arguments passed to a function.
Fully qualified name: kfr::add(const T1 &, const T2 &, const Ts &...)
Declared at simd/operators.hpp:369
Function add¶
function add(initialvalue<T>) simd¶
template <typename T>
constexpr KFR_INTRINSIC T add(initialvalue<T>) { … } Identity element for add (returns zero).
Fully qualified name: kfr::add(initialvalue<T>)
Declared at simd/operators.hpp:375
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.