Stan Math Library
5.0.0
Automatic Differentiation
|
Typedefs | |
template<typename T > | |
using | stan::require_stan_scalar_t = require_t< is_stan_scalar< std::decay_t< T > > > |
Require type satisfies is_stan_scalar. | |
template<typename T > | |
using | stan::require_not_stan_scalar_t = require_not_t< is_stan_scalar< std::decay_t< T > > > |
Require type does not satisfy is_stan_scalar. | |
template<typename... Types> | |
using | stan::require_all_stan_scalar_t = require_all_t< is_stan_scalar< std::decay_t< Types > >... > |
Require all of the types satisfy is_stan_scalar. | |
template<typename... Types> | |
using | stan::require_any_stan_scalar_t = require_any_t< is_stan_scalar< std::decay_t< Types > >... > |
Require any of the types satisfy is_stan_scalar. | |
template<typename... Types> | |
using | stan::require_all_not_stan_scalar_t = require_all_not_t< is_stan_scalar< std::decay_t< Types > >... > |
Require none of the types satisfy is_stan_scalar. | |
template<typename... Types> | |
using | stan::require_any_not_stan_scalar_t = require_any_not_t< is_stan_scalar< std::decay_t< Types > >... > |
Require at least one of the types do not satisfy is_stan_scalar. | |
template<typename T > | |
using | stan::require_not_vt_stan_scalar = require_not_t< is_stan_scalar< value_type_t< std::decay_t< T > > > > |
Require value type does not satisfy is_stan_scalar. | |
template<typename T > | |
using | stan::require_st_stan_scalar = require_t< is_stan_scalar< scalar_type_t< std::decay_t< T > > > > |
Require scalar type satisfies is_stan_scalar. | |
template<typename T > | |
using | stan::require_not_st_stan_scalar = require_not_t< is_stan_scalar< scalar_type_t< std::decay_t< T > > > > |
Require scalar type does not satisfy is_stan_scalar. | |
template<typename... Types> | |
using | stan::require_all_st_stan_scalar = require_all_t< is_stan_scalar< scalar_type_t< std::decay_t< Types > > >... > |
Require all of the scalar types satisfy is_stan_scalar. | |