Skip to content

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 distinct and flatten.