summaryrefslogtreecommitdiffstats
path: root/doc/antora/modules/unlang/pages/foreach.adoc
blob: 6ed3ddff67b966ea9753e5ede8195559de62a9b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
= The foreach Statement

.Syntax
[source,unlang]
----
foreach <attribute-reference> {
    [ statements ]
}
----

The `foreach` statement loops over a set of attributes as given by
`<attribute-reference>`.  The loop can be exited early by using the
xref:break.adoc[break] keyword.

<attribute-reference>::

The xref:attr.adoc[attribute reference] which will will be looped
over.  The reference can be to one attribute, to an array, a child, or
be a subset.

Inside of the `foreach` block, the attribute that is being looped over
can be referenced as `Foreach-Variable-0`, through
`Foreach-Variable-9`.  The last digit is the depth of the loop,
starting at "0".  The loops can be nested up to eight (8) deep, though
this is not recommended.

The attributes being looped over cannot be modified or deleted.

.Example
[source,unlang]
----
foreach &Class {
    update reply {
        Reply-Message += "Contains %{Foreach-Variable-0}"
    }
}
----

// Copyright (C) 2020 Network RADIUS SAS.  Licenced under CC-by-NC 4.0.
// Development of this documentation was sponsored by Network RADIUS SAS.