Function pack_elements¶
function pack_elements() meta¶
template <typename Tout, typename>
KFR_INTRINSIC constexpr Tout pack_elements() { … } Returns the identity value (0) for an empty pack
| Tout | result type |
Fully qualified name: kfr::pack_elements()
Declared at meta.hpp:2094
Function pack_elements¶
function pack_elements(Arg, Args...) meta¶
template <typename Tout, typename Arg, typename... Args>
KFR_INTRINSIC constexpr Tout pack_elements(Arg x, Args... args) { … }
| Tout | result type |
| Arg | first argument type |
| Args | remaining argument types |
| x | first value (least significant) |
| args | remaining values (each shifted left by the size of Arg ) |
Fully qualified name: kfr::pack_elements(Arg, Args...)
Declared at meta.hpp:2106
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.