Index: doc/theses/colby_parsons_MMAth/text/channels.tex
===================================================================
--- doc/theses/colby_parsons_MMAth/text/channels.tex	(revision 494a7e5d8c42ff690bddc028e6f3d3991fc9f4e2)
+++ doc/theses/colby_parsons_MMAth/text/channels.tex	(revision e0396d955efb075761370d77a06b0629c8de036f)
@@ -107,4 +107,12 @@
 Programmers use this mechanism to broadcast a sentinel value to multiple consumers.
 Additionally, the @flush@ routine is more performant then looping around the @insert@ operation since it can deliver the elements without having to reacquire mutual exclusion for each element sent.
+
+\item Go-style @?>>?@ and @?<<?@ shorthand operators for inserting and removing respectively.
+\begin{cfa}
+channel(int) chan;
+int i = 2;
+i >> chan;			$\C{// insert i into chan}$
+i << chan;	        $\C{// remove element from chan into i}$
+\end{cfa}
 \end{itemize}
 
