Introduction
Infix functions let you write code that reads like a sentence. They make your calls easier to understand.
When you want to make your code look cleaner and more natural.
When you have simple functions with one parameter.
When you want to improve readability in DSLs (Domain Specific Languages).
When you want to chain calls in a way that looks like English.
When you want to avoid using dots and parentheses for simple operations.