|
template<typename... Ts> |
using | stan::real_return_t = typename real_return< Ts... >::type |
| Convenience type to calculate the real return type.
|
|
template<typename... Ts> |
using | stan::complex_return_t = std::complex< real_return_t< Ts... > > |
| Convenience type to calculate the complex return type, which wraps std::complex around the return type of the specified template parameters.
|
|
template<typename... Ts> |
using | stan::std_vector_return_t = std::vector< real_return_t< Ts... > > |
| Convenience type to calculate the complex return type, which wraps std::vector around the return type of the specified template parameters.
|
|
template<typename... Ts> |
using | stan::matrix_return_t = Eigen::Matrix< real_return_t< Ts... >, -1, -1 > |
| Convenience type to calculate the complex return type, which wraps Eigen::Matrix< , -1, -1> around the return type of the specified template parameters.
|
|
template<typename... Ts> |
using | stan::vector_return_t = Eigen::Matrix< real_return_t< Ts... >, -1, 1 > |
| Convenience type to calculate the complex return type, which wraps Eigen::Matrix< , -1, 1> around the return type of the specified template parameters.
|
|
template<typename... Ts> |
using | stan::row_vector_return_t = Eigen::Matrix< real_return_t< Ts... >, 1, -1 > |
| Convenience type to calculate the complex return type, which wraps Eigen::Matrix< , 1, -1> around the return type of the specified template parameters.
|
|
template<typename T1 , typename T2 > |
using | stan::scalar_lub_t = typename scalar_lub< T1, T2 >::type |
| Convenience type for the least upper bound of the specified template parameters in Stan's assignment ordering.
|
|
template<typename... Ts> |
using | stan::return_type_t = typename return_type< Ts... >::type |
| Convenience type for the return type of the specified template parameters.
|
|
template<template< class... > class Check, typename... Ts> |
using | stan::require_return_type_t = require_t< Check< return_type_t< Ts... > > > |
|
template<template< class... > class Check, typename... Ts> |
using | stan::require_not_return_type_t = require_not_t< Check< return_type_t< Ts... > > > |
|