3#ifndef pRC_CORE_BASIC_FUNCTIONS_ISQRT_H
4#define pRC_CORE_BASIC_FUNCTIONS_ISQRT_H
11 template<
class T, If<IsUn
signedIntegral<T>> = 0>
12 static inline constexpr T iSqrt(
T const a)
15 [&a](
auto const &self,
T const low,
T const high)
30 })(
T(0), a /
T(2) +
T(1));
pRC::Float<> T
Definition externs_nonTT.hpp:1
Definition cholesky.hpp:18
static constexpr auto makeConstantSequence()
Definition sequence.hpp:402
static constexpr T iSqrt(T const a)
Definition isqrt.hpp:12
RecursiveLambda(X &&) -> RecursiveLambda< RemoveReference< X > >