function application

function application

A function applied to (some of) its arguments. If it isnot applied to all its argument then it is a "partial application". Application is usually written in the formf(x) but some languages such as command-line interpreters andmany functional languages use juxtaposition: f x. Lispplaces the parentheses around the whole application: (f x).