1#ifndef STAN_MATH_PRIM_META_IS_FLOATING_POINT_HPP
2#define STAN_MATH_PRIM_META_IS_FLOATING_POINT_HPP
19template <
typename... Types>
21 = (stan::is_floating_point_v<Types> && ...);
23template <
typename... Types>
25 = (stan::is_floating_point_v<Types> || ...);
std::is_floating_point< std::decay_t< T > > is_floating_point
Checks if decayed type is a floating point type.
constexpr bool is_floating_point_v
constexpr bool is_any_floating_point_v
constexpr bool is_all_floating_point_v
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...