2018-05-12 11:39:29 -05:00
|
|
|
---
|
2020-08-14 20:51:06 -05:00
|
|
|
layout: "language"
|
2018-12-19 22:35:11 -06:00
|
|
|
page_title: "coalescelist - Functions - Configuration Language"
|
2018-05-12 11:39:29 -05:00
|
|
|
sidebar_current: "docs-funcs-collection-coalescelist"
|
|
|
|
description: |-
|
|
|
|
The coalescelist function takes any number of list arguments and returns the
|
|
|
|
first one that isn't empty.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `coalescelist` Function
|
|
|
|
|
|
|
|
`coalescelist` takes any number of list arguments and returns the first one
|
|
|
|
that isn't empty.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
2019-04-29 12:11:28 -05:00
|
|
|
> coalescelist(["a", "b"], ["c", "d"])
|
2018-05-12 11:39:29 -05:00
|
|
|
[
|
|
|
|
"a",
|
|
|
|
"b",
|
|
|
|
]
|
2019-04-29 12:11:28 -05:00
|
|
|
> coalescelist([], ["c", "d"])
|
2018-05-12 11:39:29 -05:00
|
|
|
[
|
|
|
|
"c",
|
|
|
|
"d",
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
2019-04-29 12:11:28 -05:00
|
|
|
To perform the `coalescelist` operation with a list of lists, use the `...`
|
2018-05-12 11:39:29 -05:00
|
|
|
symbol to expand the outer list as arguments:
|
|
|
|
|
|
|
|
```
|
2019-04-29 12:11:28 -05:00
|
|
|
> coalescelist([[], ["c", "d"]]...)
|
2018-05-12 11:39:29 -05:00
|
|
|
[
|
|
|
|
"c",
|
|
|
|
"d",
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Related Functions
|
|
|
|
|
|
|
|
* [`coalesce`](./coalesce.html) performs a similar operation with string
|
|
|
|
arguments rather than list arguments.
|