Description
Provides a strict linked list for Haskell. Strict lists evaluate elements more eagerly than lazy lists, which can improve memory predictability for some workloads.
It is useful for parsers, streaming-like transformations, performance-sensitive data handling, and code that should avoid building chains of unevaluated thunks. It is a developer library and should be selected when strictness is desired.