Description
Provides utility functions for working with Haskell tuples. Tuples group a fixed number of values, and helper functions can reduce repetitive code when transforming or selecting their parts.
It is useful in small data transformations, parser results, tests, and libraries that manipulate tuple-shaped values. For larger or user-facing data, named record types are often clearer than large tuples.