Function Application - Representation

Representation

Function application is usually depicted by juxtaposing the variable representing the function with its argument encompassed in parentheses. For example, the following expression represents the application of the function ƒ to its argument x.

In some instances, a different notation is used where the parentheses aren't required, and function application can be expressed just by juxtaposition. For example, the following expression can be considered the same as the previous one:

The latter notation is especially useful in combination with the currying isomorphism. Given a function, its application is represented as by the former notation and by the latter. However, functions in curried form can be represented by juxtaposing their arguments:, rather than . This relies on function application being left-associative.

Read more about this topic:  Function Application