Function cprod¶
function cprod(cvals_t<T>) meta¶
template <typename T>
constexpr KFR_INTRINSIC T cprod(cvals_t<T>) noexcept { … } Returns the product of all values in the list (1 for an empty list)
Fully qualified name: kfr::cprod(cvals_t<T>)
Declared at meta.hpp:422
Function cprod¶
function cprod(cvals_t<T, first, rest...>) meta¶
template <typename T, T first, T... rest>
constexpr KFR_INTRINSIC T cprod(cvals_t<T, first, rest...>) noexcept { … } Returns the product of all values in the list
| T | element type |
| first | first value |
| rest | remaining values |
Fully qualified name: kfr::cprod(cvals_t<T, first, rest...>)
Declared at meta.hpp:432
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.