list.concatenate
Syntax
- l := list.concatenate(a<,idepth>)
Concatenates a nested iterable type into a single longer list.
The concatenation continues to a maximum nested depth of idepth. The type at each nested level of concatenation must be iterable. The default depth of concatenation is 1 unless otherwise specified.
For example a list of list of { {1,2,3}, {4,5,6}, {7,8,9} } can be concatenated into a single list { 1,2,3,4,5,6,7,8,9 }.
Was this helpful? ... | Itasca Software © 2024, Itasca | Updated: Aug 13, 2024 |