November 2017
Intermediate to advanced
670 pages
17h 35m
English
A lambda expression is an unnamed block of code with parameters.
A lambda expression consists of three things:
Lambda calculus uses the following three concepts to describe how to perform a unit of computation:
Variables that are unbound are referred to as free variables. Computation is achieved by performing single steps of reduction:
Consider the following untyped Lambda calculus statement:
(λx.xx)(λx.xx)
The lambda symbol (from whence the name is derived) ...