Is there a convention for how to say Haskell operator names, that are only make up of symbols, out-loud?
Say I'm discussing some code with someone, for (>>)
do I say "greater than, greater than" or "Sequentially compose two actions, discarding any value produced by the first" or something else?
Some common ones have names, eg bind
for (>>=)
or fmap
for (<$>)
.
But if I'm reading a line of code out-loud and it uses one of the many, many other operators made up of just symbols, what do I say?