@@ -27,8 +27,6 @@ type structure of the attributes after the merging rules have been applied.
...
@@ -27,8 +27,6 @@ type structure of the attributes after the merging rules have been applied.
}
}
```
```
The following example uses the expansion symbol (...) to transform the value into separate arguments. Refer to [Expanding Function Argument](/language/expressions/function-calls#expanding-function-arguments) for details.
```
```
> merge({a="b"}, {a=[1,2], c="z"}, {d=3})
> merge({a="b"}, {a=[1,2], c="z"}, {d=3})
{
{
...
@@ -40,3 +38,14 @@ The following example uses the expansion symbol (...) to transform the value int
...
@@ -40,3 +38,14 @@ The following example uses the expansion symbol (...) to transform the value int
"d" = 3
"d" = 3
}
}
```
```
The following example uses the expansion symbol (...) to transform the value into separate arguments. Refer to [Expanding Function Argument](/language/expressions/function-calls#expanding-function-arguments) for details.