Stan Math Library
4.9.0
Automatic Differentiation
Loading...
Searching...
No Matches
conjunction.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_PRIM_META_CONJUNCTION_HPP
2
#define STAN_MATH_PRIM_META_CONJUNCTION_HPP
3
4
#include <type_traits>
5
6
namespace
stan
{
7
namespace
math {
13
template
<
typename
... T>
14
struct
conjunction
: std::true_type {};
15
16
template
<
typename
T,
typename
... Ts>
17
struct
conjunction
<T, Ts...>
18
: std::conditional_t<T::value, conjunction<Ts...>, std::false_type> {};
19
20
}
// namespace math
21
}
// namespace stan
22
#endif
stan
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition
unit_vector_constrain.hpp:15
stan::math::conjunction
Extends std::true_type when instantiated with zero or more template parameters, all of which extend t...
Definition
conjunction.hpp:14
stan
math
prim
meta
conjunction.hpp
[
Stan Home Page
]
© 2011–2019, Stan Development Team.