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

Detailed Description

Typedefs

template<typename T >
using stan::require_double_or_int_t = require_t< is_double_or_int< std::decay_t< T > > >
 Require type satisfies is_double_or_int.
 
template<typename T >
using stan::require_not_double_or_int_t = require_not_t< is_double_or_int< std::decay_t< T > > >
 Require type does not satisfy is_double_or_int.
 
template<typename... Types>
using stan::require_all_double_or_int_t = require_all_t< is_double_or_int< std::decay_t< Types > >... >
 Require all of the types satisfy is_double_or_int.
 
template<typename... Types>
using stan::require_any_double_or_int_t = require_any_t< is_double_or_int< std::decay_t< Types > >... >
 Require any of the types satisfy is_double_or_int.
 
template<typename... Types>
using stan::require_all_not_double_or_int_t = require_all_not_t< is_double_or_int< std::decay_t< Types > >... >
 Require none of the types satisfy is_double_or_int.
 
template<typename... Types>
using stan::require_any_not_double_or_int_t = require_any_not_t< is_double_or_int< std::decay_t< Types > >... >
 Require at least one of the types do not satisfy is_double_or_int.