Iteration

Iteration is the art of processing all the values in a collection and doing something with each of those values in turn.

We have already used map, reduce & apply to iterate over the values in a collection.

for function

The for function helps us work with each value in a collection.

As an example, we can use the for function to generate the mathematical squares for the numbers 1 to 9

(for [number (range 1 10)]
  (* number number))

In the above example, number is a local name that is used to refer in turn to each value in our collection.

assignment & conditions

We can assign additional local names within the for function, using the :let directive. Each iteration the name in the :let is bound to a new value.

Conditions can be used to filter our results using :when, only returning values that match the condition.

(for [number [0 1 2 3 4 5]
      :let [result (* number 3)]
      :when (even? result)]
  result)
Theory: List Comprehension...
Theory: for is a macro...

Iteration & Recursion

In simple terms, an iterative function is one that loops to repeat some part of the code and a recursive function is one that calls itself again to repeat the code.

Read more about recursion at Recursion 101 by PurelyFunctional.tv

results matching ""

    No results matching ""