Automatic Differentiation
 
Loading...
Searching...
No Matches
is_var_and_matrix_types.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  stan
 The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation.
 

Typedefs

template<typename... Types>
using stan::is_var_and_matrix_types = bool_constant< is_var< return_type_t< Types... > >::value &&stan::math::disjunction< is_matrix< Types >... >::value >
 Extends std::true_type when instantiated with at least one type that has a var scalar_type and at least one type is a matrix.
 
template<typename... Types>
using stan::require_all_not_var_and_matrix_types = require_not_t< is_var_and_matrix_types< Types... > >