kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 84b3af6cf28cf4a98bb4a00b4e22eba9ad6ff07e
parent 9da23c48b8490ba2f1262fa6d296b47e4fb44ebc
Author: [email protected] <[email protected]>
Date:   Wed,  3 Aug 2022 19:01:18 +0100

Move is_numeric to Cometa

Diffstat:
Minclude/kfr/base/expression.hpp | 8--------
Minclude/kfr/cometa.hpp | 8++++++++
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/include/kfr/base/expression.hpp b/include/kfr/base/expression.hpp @@ -331,14 +331,6 @@ constexpr inline bool is_output_expression = is_base_of<output_expression, decay template <typename... Es> constexpr inline bool is_output_expressions = (is_base_of<output_expression, decay<Es>> || ...); -/// @brief Check if the type argument is a number or a vector of numbers -template <typename T> -constexpr inline bool is_numeric = is_number<deep_subtype<T>>; - -/// @brief Check if the type arguments are a numbers or a vectors of numbers -template <typename... Ts> -constexpr inline bool is_numeric_args = (is_numeric<Ts> && ...); - inline namespace CMT_ARCH_NAME { diff --git a/include/kfr/cometa.hpp b/include/kfr/cometa.hpp @@ -1107,6 +1107,14 @@ constexpr inline bool is_number = details::is_number_impl<decay<T>>::value; template <typename... Ts> constexpr inline bool is_numbers = (details::is_number_impl<decay<Ts>>::value && ...); +/// @brief Check if the type argument is a number or a vector of numbers +template <typename T> +constexpr inline bool is_numeric = is_number<deep_subtype<T>>; + +/// @brief Check if the type arguments are a numbers or a vectors of numbers +template <typename... Ts> +constexpr inline bool is_numeric_args = (is_numeric<Ts> && ...); + namespace details { template <typename T>