1#ifndef STAN_MATH_PRIM_FUN_LOG_INV_LOGIT_DIFF_HPP
2#define STAN_MATH_PRIM_FUN_LOG_INV_LOGIT_DIFF_HPP
36template <
typename T1,
typename T2, require_all_arithmetic_t<T1, T2>* =
nullptr>
54template <
typename T1,
typename T2, require_any_container_t<T1, T2>* =
nullptr>
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
fvar< T > log1m_exp(const fvar< T > &x)
Return the natural logarithm of one minus the exponentiation of the specified argument.
fvar< T > log_inv_logit_diff(const fvar< T > &x, const fvar< T > &y)
Returns fvar with the natural logarithm of the difference of the inverse logits of the specified argu...
fvar< T > log1p_exp(const fvar< T > &x)
int is_inf(const fvar< T > &x)
Returns 1 if the input's value is infinite and 0 otherwise.
auto apply_scalar_binary(const T1 &x, const T2 &y, const F &f)
Base template function for vectorization of binary scalar functions defined by applying a functor to ...
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...