1#ifndef STAN_MATH_PRIM_FUN_LOG1P_EXP_HPP 
    2#define STAN_MATH_PRIM_FUN_LOG1P_EXP_HPP 
   63  static inline auto fun(T&& x) {
 
require_t< is_container< std::decay_t< T > > > require_container_t
Require type satisfies is_container.
 
require_not_t< is_nonscalar_prim_or_rev_kernel_expression< std::decay_t< T > > > require_not_nonscalar_prim_or_rev_kernel_expression_t
Require type does not satisfy is_nonscalar_prim_or_rev_kernel_expression.
 
require_not_t< is_var_matrix< std::decay_t< T > > > require_not_var_matrix_t
Require type does not satisfy is_var_matrix.
 
fvar< T > log1p_exp(const fvar< T > &x)
 
fvar< T > log1p(const fvar< T > &x)
 
fvar< T > exp(const fvar< T > &x)
 
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
 
Base template class for vectorization of unary scalar functions defined by a template class F to a sc...
 
Structure to wrap log1p_exp() so that it can be vectorized.