Prev Next

@(@\newcommand{\B}[1]{ {\bf #1} } \newcommand{\R}[1]{ {\rm #1} }@)@
a_double Assignment Operators

Syntax
ax op ay
aw op y

op
The assignment operator op is one of the following:
op    Meaning
= simple assignment
+= ax = ax + ( ay or y )
-= ax = ax - ( ay or y )
*= ax = ax * ( ay or y )
/= ax = ax / ( ay or y )

ax
This object has prototype
     const a_double& 
ax

ay
This object has prototype
     a_double& 
ay

y
This object has prototype
     const double& 
y

Example
C++ , Python .
Input File: lib/cplusplus/a_double.cpp