|
void | stan::math::internal::pipe_in (std::stringstream &ss) |
| No-op.
|
|
template<typename Arg0 , typename... Args> |
void | stan::math::internal::pipe_in (std::stringstream &ss, Arg0 arg0, const Args... args) |
| Pipes given arguments into a stringstream.
|
|
template<typename... Args> |
void | stan::math::internal::elementwise_throw_domain_error (const Args... args) |
| Throws domain error with concatenation of arguments for the error message.
|
|
template<typename F , typename T , typename... Indexings, require_stan_scalar_t< T > * = nullptr> |
void | stan::math::elementwise_check (const F &is_good, const char *function, const char *name, const T &x, const char *must_be, const Indexings &... indexings) |
| Check that the predicate holds for the value of x .
|
|
template<typename F , typename T , typename... Indexings, require_eigen_t< T > * = nullptr, std::enable_if_t<(Eigen::internal::traits< T >::Flags &Eigen::LinearAccessBit)||T::IsVectorAtCompileTime > * = nullptr> |
void | stan::math::elementwise_check (const F &is_good, const char *function, const char *name, const T &x, const char *must_be, const Indexings &... indexings) |
| Check that the predicate holds for all elements of the value of x .
|
|
template<typename F , typename T > |
bool | stan::math::elementwise_is (const F &is_good, const T &x) |
| Check that the predicate holds for the value of x , working elementwise on containers.
|
|