![]() |
Stan Math Library
5.1.0
Automatic Differentiation
|
Postfix increment operator for variables (C++).
Following C++, the expression (a++) is defined to behave like the sequence of operations
var temp = a; a = a + 1.0; return temp;
| a | Variable to increment. |
Definition at line 38 of file operator_unary_increment.hpp.