diff options
Diffstat (limited to 'devel/hs-mutable-containers/pkg-descr')
-rw-r--r-- | devel/hs-mutable-containers/pkg-descr | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/hs-mutable-containers/pkg-descr b/devel/hs-mutable-containers/pkg-descr new file mode 100644 index 000000000000..a204e34b67cf --- /dev/null +++ b/devel/hs-mutable-containers/pkg-descr @@ -0,0 +1,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 |