blob: a204e34b67cfcda7f47c1bc1c52e9e4ff1504c01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
One of Haskell's strengths is immutable data structures. These
structures make it easier to reason about code, simplify concurrency and
parallelism, and in some cases can improve performance by allowing
sharing. However, there are still classes of problems where mutable
data structures can both be more convenient, and provide a performance
boost. This library is meant to provide such structures in a
performant, well tested way. It also provides a simple abstraction over
such data structures via typeclasses.
WWW: https://github.com/fpco/mutable-containers
|