For example, a referentially transparent function with no free variables:
g op x y = x `op` y
A now now a function with the free (from the point-of-view of f
) variables op
and x
:
x = 1
op = (+)
f y = x `op` y
f
is also referentially transparent. But is it a pure function?
If it's not a pure function, what is the name for a function that is referentially transparent, but makes use of 1 or more variables bound in an enclosing scope?
Motivation for this question:
It's not clear to me from Wikipedia's article:
The result value need not depend on all (or any) of the argument values. However, it must depend on nothing other than the argument values.
(emphasis mine)
nor from Google searches whether a pure function can depend on free (in the sense of being bound in an enclosing scope, and not being bound in the scope of the function) variables.
Also, this book says:
If functions without free variables are pure, are closures impure?
The function
function (y) { return x }
is interesting. It contains a free variable, x. A free variable is one that is not bound within the function. Up to now, we’ve only seen one way to “bind” a variable, namely by passing in an argument with the same name. Since the functionfunction (y) { return x }
doesn’t have an argument named x, the variable x isn’t bound in this function, which makes it “free.”Now that we know that variables used in a function are either bound or free, we can bifurcate functions into those with free variables and those without:
- Functions containing no free variables are called pure functions.
- Functions containing one or more free variables are called closures.
So what is the definition of a "pure function"?
Short answer is YES f is pure
In Haskell
map
is defined withfoldr
. Would you agree thatmap
is functional? If so did it matter that it had global functionfoldr
that wasn't supplied tomap
as an argument?In
map
foldr
is a free variable. It's not doubt about it. It makes no difference that it's a function or something that evaluates to a value. It's the same.Free variables, like the functions
foldl
and+
, are essential for functional languages to exist. Without it you wouldn't have abstraction and the languages would be worse off than the Fortran.