concat
concat combines multiple lists into a single list.
Notes
- Use it when you want to merge lists before deduplicating or iterating.
- It preserves order and returns a new list.
- See also
distinctandflatten.
concat combines multiple lists into a single list.
distinct and flatten.