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 79db18a2a1887459e0ba3702044373377ea49a1f
parent e946a12056ddb28f01adcdeaad94b6eba166868d
Author: [email protected] <[email protected]>
Date:   Fri,  4 Nov 2016 03:13:54 +0300

New function: inrange

Diffstat:
Minclude/kfr/base/operators.hpp | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/include/kfr/base/operators.hpp b/include/kfr/base/operators.hpp @@ -558,6 +558,12 @@ CMT_INLINE mask<T, N> iszero(const vec<T, N>& x) return x == T(); } +template <typename T1, typename T2, typename T3> +KFR_SINTRIN maskfor<common_type<T1, T2, T3>> inrange(const T1& x, const T2& min, const T3& max) +{ + return x >= min && x <= max; +} + /// @brief Swap byte order template <typename T, size_t N, KFR_ENABLE_IF(sizeof(vec<T, N>) > 8)> CMT_INLINE vec<T, N> swapbyteorder(const vec<T, N>& x)