heat/releasenotes/notes/add-list_concat-function-c28563ab8fb6362e.yaml
Juan Antonio Osorio Robles 98faf03be4 Implement list_concat function
This function uses python's extend function for lists in order to
concatenate lists. So, given the input: [['v1', 'v2'], ['v3', 'v4']]
the result would be ['v1', 'v2', 'v3', 'v4'].

This comes as an alternative to using yaql's concat.

Change-Id: I082833e73388540b29f71b78293fd36fe04b7b92
2017-04-20 19:08:25 +03:00

5 lines
118 B
YAML

---
features:
- The list_concat function was added, which concats several lists using
python's extend function.