Documentation Index
Fetch the complete documentation index at: https://errand.nuvrel.dev/llms.txt
Use this file to discover all available pages before exploring further.
flatten(list) takes a list that may contain nested lists and returns a single flat tuple with all elements at the same level.
Signature
Example
Each service declares its own set of test patterns.flatten collapses them into a single sequence for a unified test run:
["./service/api/...", "./service/api/integration/...", "./service/worker/...", ...].
Notes
flattenrecurses through all levels of nesting.- The result is a tuple, not a list. Functions like
jointhat accept lists also work with tuples.