Commit 90d34520 authored by Fred Drake's avatar Fred Drake

Clean up a table so it passes formatting.

parent ffa241bd
...@@ -207,18 +207,25 @@ Instance attributes (read-only): ...@@ -207,18 +207,25 @@ Instance attributes (read-only):
Supported operations: Supported operations:
\begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes} \begin{tableiii}{c|l|c}{code}{Operation}{Result}{Notes}
\lineii{\var{t1} = \var{t2} + \var{t3}}{Sum of \var{t2} and \var{t3}. \lineiii{\var{t1} = \var{t2} + \var{t3}}
Afterwards \var{t1}-\var{t2} == \var{t3} and \var{t1}-\var{t3} == \var{t2} are true.}{(1)} {Sum of \var{t2} and \var{t3}.
\lineii{\var{t1} = \var{t2} - \var{t3}}{Difference of \var{t2} and \var{t3}. Afterwards \var{t1} = \var{t2} - \var{t3} and Afterwards \var{t1}-\var{t2} == \var{t3} and \var{t1}-\var{t3}
\var{t2} == \var{t1} + \var{t3} are true.}{(1)} == \var{t2} are true.}
\lineii{\var{t1} = \var{t2} * \var{i} or \var{t1} = \var{i} * \var{t2}} {(1)}
\lineiii{\var{t1} = \var{t2} - \var{t3}}
{Difference of \var{t2} and \var{t3}. Afterwards \var{t1} ==
\var{t2} - \var{t3} and \var{t2} == \var{t1} + \var{t3} are
true.}
{(1)}
\lineiii{\var{t1} = \var{t2} * \var{i} or \var{t1} = \var{i} * \var{t2}}
{Delta multiplied by an integer or long. {Delta multiplied by an integer or long.
Afterwards \var{t1} // i == \var{t2} is true, provided i != 0. Afterwards \var{t1} // i == \var{t2} is true, provided i != 0.
In general, \var{t1} * i == \var{t1} * (i-1) + \var{t1} is true.}{(1)} In general, \var{t1} * i == \var{t1} * (i-1) + \var{t1} is true.}
\lineii{\var{t1} = \var{t2} // \var{i}}{The floor is computed and the remainder (if any) is {(1)}
thrown away.}{(2)} \lineiii{\var{t1} = \var{t2} // \var{i}}
{The floor is computed and the remainder (if any) is thrown away.}
\end{tableii} {(2)}
\end{tableiii}
\noindent \noindent
Notes: Notes:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment