Automatic Differentiation
 
Loading...
Searching...
No Matches
plus.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_FUN_PLUS_HPP
2#define STAN_MATH_PRIM_FUN_PLUS_HPP
3
5
6namespace stan {
7namespace math {
8
16template <typename T>
17inline T plus(T&& x) {
18 return std::forward<T>(x);
19}
20
21} // namespace math
22} // namespace stan
23
24#endif
T plus(T &&x)
Returns the unary plus of the input.
Definition plus.hpp:17
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Definition fvar.hpp:9