Skip to content

Macro KFR_I_FN_FULL

macro KFR_I_FN_FULL simd

KFR_I_FN_FULL(FN, FULLFN)                                                                            \
    namespace fn                                                                                             \
    {                                                                                                        \
    struct FN                                                                                                \
    {                                                                                                        \
template <typename... Args>                                                                          \
KFR_INLINE_MEMBER decltype(FULLFN(std::declval<Args>()...)) operator()(Args&&... args) const         \
{                                                                                                    \
    return FULLFN(std::forward<Args>(args)...);                                                      \
}                                                                                                    \
    };                                                                                                       \
    }

Fully qualified name: KFR_I_FN_FULL

Declared at simd/vec.hpp:68

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.