Automatic Differentiation
 
Loading...
Searching...
No Matches

Detailed Description

Typedefs

template<typename T >
using stan::require_arithmetic_t = require_t< std::is_arithmetic< std::decay_t< T > > >
 Require type satisfies std::is_arithmetic.
 
template<typename T >
using stan::require_not_arithmetic_t = require_not_t< std::is_arithmetic< std::decay_t< T > > >
 Require type does not satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_all_arithmetic_t = require_all_t< std::is_arithmetic< std::decay_t< Types > >... >
 Require all of the types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_any_arithmetic_t = require_any_t< std::is_arithmetic< std::decay_t< Types > >... >
 Require any of the types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_all_not_arithmetic_t = require_all_not_t< std::is_arithmetic< std::decay_t< Types > >... >
 Require none of the types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_any_not_arithmetic_t = require_any_not_t< std::is_arithmetic< std::decay_t< Types > >... >
 Require at least one of the types do not satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_all_vt_arithmetic = require_all_t< std::is_arithmetic< value_type_t< std::decay_t< Types > > >... >
 Require all of the value types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_any_not_vt_arithmetic = require_any_not_t< std::is_arithmetic< value_type_t< std::decay_t< Types > > >... >
 Require at least one of the value types do not satisfy std::is_arithmetic.
 
template<typename T >
using stan::require_st_arithmetic = require_t< std::is_arithmetic< scalar_type_t< std::decay_t< T > > > >
 Require scalar type satisfies std::is_arithmetic.
 
template<typename T >
using stan::require_not_st_arithmetic = require_not_t< std::is_arithmetic< scalar_type_t< std::decay_t< T > > > >
 Require scalar type does not satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_all_st_arithmetic = require_all_t< std::is_arithmetic< scalar_type_t< std::decay_t< Types > > >... >
 Require all of the scalar types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_any_st_arithmetic = require_any_t< std::is_arithmetic< scalar_type_t< std::decay_t< Types > > >... >
 Require any of the scalar types satisfy std::is_arithmetic.
 
template<typename... Types>
using stan::require_any_not_st_arithmetic = require_any_not_t< std::is_arithmetic< scalar_type_t< std::decay_t< Types > > >... >
 Any of the scalar types do not satisfy std::is_arithmetic.