Partial Application

tosh2 pts0 comments

Partial application - Wikipedia

Jump to content

Search

Search

Donate

Create account

Log in

Personal tools

Donate

Create account

Log in

Partial application

2 languages

Русский<br>中文

Edit links

From Wikipedia, the free encyclopedia

In functional programming

Not to be confused with Partial evaluation or Partial function.

In computer science, partial application (or partial function application ) refers to the process of fixing a number of arguments of a function, producing another function of smaller arity. Given a function

{\displaystyle f\colon (X\times Y\times Z)\to N}

, we might fix (or 'bind') the first argument, producing a function of type

partial

{\displaystyle {\text{partial}}(f)\colon (Y\times Z)\to N}

. Evaluation of this function might be represented as

partial

{\displaystyle f_{\text{partial}}(2,3)}

. Note that the result of partial function application in this case is a function that takes two arguments. Partial application is sometimes incorrectly called currying, which is a related, but distinct concept.

Motivation<br>[edit]

Intuitively, partial function application says "if you fix the first arguments of the function, you get a function of the remaining arguments". For example, if function div(x,y) = x/y, then div with the parameter x fixed at 1 is another function: div1(y) = div(1,y) = 1/y. This is the same as the function inv that returns the multiplicative inverse of its argument, defined by inv(y) = 1/y.

The practical motivation for partial application is that very often the functions obtained by supplying some but not all of the arguments to a function are useful; for example, many languages have a function or operator similar to plus_one. Partial application makes it easy to define these functions, for example by creating a function that represents the addition operator with 1 bound as its first argument.

Implementations<br>[edit]

In languages such as ML, Haskell and F#, functions are defined in curried form by default. Supplying fewer than the total number of arguments is referred to as partial application.

In languages with first-class functions, one can define curry, uncurry and papply to perform currying and partial application explicitly. This might incur a greater run-time overhead due to the creation of additional closures, while Haskell can use more efficient techniques.[1]

Scala implements optional partial application with placeholder, e.g. def add(x: Int, y: Int) = {x+y}; add(1, _: Int) returns an incrementing function. Scala also supports multiple parameter lists as currying, e.g. def add(x: Int)(y: Int) = {x+y}; add(1) _.

Clojure implements partial application using the partial function defined in its core library.[2]

The C++ standard library provides bind(function, args..) to return a function object that is the result of partial application of the given arguments to the given function. Since C++20 the function bind_front(function, args...) is also provided which binds the first sizeof...(args) arguments of the function to the args. In contrast, bind allows binding any of the arguments of the function passed to it, not just the first ones. Alternatively, lambda expressions can be used:

int f(int a, int b);<br>auto f_partial = [](int a) { return f(a, 123); };<br>assert(f_partial(456) == f(456, 123) );

In Java, MethodHandle.bindTo partially applies a function to its first argument.[3]<br>Alternatively, since Java 8, lambdas can be used:

public static A, B, R> FunctionB, R> partialApply(BiFunctionA, B, R> biFunc, A value) {<br>return b -> biFunc.apply(value, b);

In Raku, the assuming method creates a new function with fewer parameters.[4]

The Python standard library module functools includes the partial function, allowing positional and named argument bindings, returning a new function.[5]

In XQuery, an argument placeholder (?) is used for each non-fixed argument in a partial function application.[6]

Definitions<br>[edit]

In the simply typed lambda calculus with function and product types (λ→,×) partial application, currying and uncurrying can be defined as

papply<br>(((a × b) → c) × a) → (b → c) = λ(f, x). λy. f (x, y)<br>curry<br>((a × b) → c) → (a → (b → c)) = λf. λx. λy. f (x, y)<br>uncurry<br>(a → (b → c)) → ((a × b) → c) = λf. λ(x, y). f x y<br>Note that curry papply = curry.

Mathematical formulation and examples<br>[edit]

Partial application can be a useful way to define several useful notions in mathematics.

Given sets

{\displaystyle X,Y}

and

{\displaystyle Z}

, and a function

{\displaystyle f:X\times Y\rightarrow Z}

, one can define the function

{\displaystyle f(\,\cdot \,,-):X\rightarrow (Y\rightarrow Z),}

where

{\displaystyle (Y\rightarrow Z)}

is the set of functions

{\displaystyle Y\rightarrow Z}

. The image of

{\displaystyle x\in X}

under this map is

{\displaystyle f(x,\,\cdot \,):Y\rightarrow Z}

. This is the function which sends

{\displaystyle y\in Y}

to

{\displaystyle f(x,y)}

. There are often structures on

{\displaystyle X,Y,Z}

which...

function partial application displaystyle arguments first

Related Articles