Clean up a table so it passes formatting.

This commit is contained in:
Fred Drake 2002-12-30 20:35:32 +00:00
parent b983aa0003
commit 9bdeee492a
1 changed files with 19 additions and 12 deletions

View File

@ -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)}
{Delta multiplied by an integer or long. \lineiii{\var{t1} = \var{t2} - \var{t3}}
Afterwards \var{t1} // i == \var{t2} is true, provided i != 0. {Difference of \var{t2} and \var{t3}. Afterwards \var{t1} ==
In general, \var{t1} * i == \var{t1} * (i-1) + \var{t1} is true.}{(1)} \var{t2} - \var{t3} and \var{t2} == \var{t1} + \var{t3} are
\lineii{\var{t1} = \var{t2} // \var{i}}{The floor is computed and the remainder (if any) is true.}
thrown away.}{(2)} {(1)}
\lineiii{\var{t1} = \var{t2} * \var{i} or \var{t1} = \var{i} * \var{t2}}
\end{tableii} {Delta multiplied by an integer or long.
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)}
\lineiii{\var{t1} = \var{t2} // \var{i}}
{The floor is computed and the remainder (if any) is thrown away.}
{(2)}
\end{tableiii}
\noindent \noindent
Notes: Notes: