Folding
A functional iterator is a function that traverses a data structure and calls in turn a given function over the elements of that structure to compute some value. Another approach is sometimes possible: loops (see sections loops, sets and maps).
There are three kinds of functional iterations over lists: the fold, the map (not to be confused with the map data structure) and the iteration.
Let us consider first here the fold, which is the most general form of functional iteration. The folded function takes two arguments: an accumulator and the structure element at hand, with which it then produces a new accumulator. This enables having a partial result that becomes complete when the traversal of the data structure is over.
The module List
exports the functions fold_left
and fold_right
,
so folds have either the form:
or
which mean that the folding can be done leftwards or rightwards on the
list. One way to tell them apart is to look where the folded function,
and the fold itself, keep the accumulator in their signatures. Take
for example a function f
, a list [1, 2, 3]
, and an initial
accumulator init
. Then
and
The type of List.fold_left
is (p : [a * b => a, a, b list]) => a
.
The type of List.fold_right
is (p : [b * a => a, b list, a]) => a
.
For example, let us compute the sum of integers in a list, assuming
that the empty list yields 0
:
See predefined namespace List.