Skip to content

Commit

Permalink
Clarify iterators.bidi/3.3
Browse files Browse the repository at this point in the history
Fixes #292.
  • Loading branch information
CaseyCarter committed Mar 9, 2017
1 parent 6d2ff48 commit 283fa47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iterators.tex
Expand Up @@ -1455,7 +1455,8 @@
\begin{itemize}
\item \tcode{\&\dcr{}a == \&a}.
\item If \tcode{bool(a == b)}, then \tcode{bool(a\dcr{} == b)}.
\item If \tcode{bool(a == b)}, then \tcode{bool((a\dcr{}, a) == \dcr{}b)}.
\item If \tcode{bool(a == b)}, then after evaluating both \tcode{a\dcr} and \tcode{\dcr{}b},
\tcode{bool(a == b)} still holds.
\item If \tcode{a} is incrementable and \tcode{bool(a == b)}, then
\tcode{bool(\dcr{}(++a) == b)}.
\item If \tcode{bool(a == b)}, then \tcode{bool(++(\dcr{}a) == b)}.
Expand Down

0 comments on commit 283fa47

Please sign in to comment.