Pattern synonyms are abstractions of patterns similar to how functions are abstractions of expressions.
For this example, let's look at the interface Data.Sequence exposes, and let's see how it can be improved with pattern synonyms. The Seq type is a data type that, internally, uses a complicated r...