What are all the instances of syntactic sugar in Scala?
They are hard to search for since most/all of them are purely symbols and are thus hard to search for without
Anonymous functions:
_ + _ is short for (a, b) => a + b
_ + _
(a, b) => a + b