Stan Math Library
4.9.0
Automatic Differentiation
|
Postfix decrement 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 decrement. |
Definition at line 42 of file operator_unary_decrement.hpp.