List.Combine
Zwraca jedną listę będącą wynikiem połączenia wielu list.
Syntax
List.Combine(
lists as list
) as list
Remarks
Przyjmuje listę list lists
i scala te listy w jedną nową listę.
Examples
Example #1
Połącz dwie proste listy — {1, 2} i {3, 4}.
List.Combine({{1, 2}, {3, 4}})
Result:
{
1,
2,
3,
4
}
Example #2
Połącz dwie listy — {1, 2} i {3, {4, 5}} — z których jedna zawiera listę zagnieżdżoną.
List.Combine({{1, 2}, {3, {4, 5}}})
Result:
{
1,
2,
3,
{4, 5}
}
Category
List.Transformation functions