Rounding functions¶
floor
function¶
template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
T1 floor(const T1 &x)
Returns the largest integer value not greater than x
Source code
template <typename T1, KFR_ENABLE_IF(is_numeric<T1>)>
KFR_INTRINSIC T1 floor(const T1& x)
{
return intrinsics::floor(x);
}
https://github.com/kfrlib/kfr/blob//include/kfr/simd/round.hpp#L37
Auto-generated from sources, Revision , https://github.com/kfrlib/kfr/blob//include/kfr/