![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
Go to the source code of this file.
Namespaces | |
| namespace | stan |
| The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation from C or the boost::math::lgamma implementation. | |
Typedefs | |
| template<typename T > | |
| using | stan::is_string_convertible = std::is_convertible< T, std::string > |
| Deduces whether type is convertible to string. | |
| template<typename T > | |
| using | stan::require_string_convertible_t = require_t< is_string_convertible< std::decay_t< T > > > |
| Require type satisfies is_string_convertible. | |
| template<typename T > | |
| using | stan::require_not_string_convertible_t = require_not_t< is_string_convertible< std::decay_t< T > > > |
| Require type does not satisfy is_string_convertible. | |
| template<typename... Types> | |
| using | stan::require_all_string_convertible_t = require_all_t< is_string_convertible< std::decay_t< Types > >... > |
| Require all of the types satisfy is_string_convertible. | |
| template<typename... Types> | |
| using | stan::require_any_string_convertible_t = require_any_t< is_string_convertible< std::decay_t< Types > >... > |
| Require any of the types satisfy is_string_convertible. | |
| template<typename... Types> | |
| using | stan::require_all_not_string_convertible_t = require_all_not_t< is_string_convertible< std::decay_t< Types > >... > |
| Require none of the types satisfy is_string_convertible. | |
| template<typename... Types> | |
| using | stan::require_any_not_string_convertible_t = require_any_not_t< is_string_convertible< std::decay_t< Types > >... > |
| Require at least one of the types do not satisfy is_string_convertible. | |