more-containers: A few more collections

[ data-structures, library, mit ] [ Propose Tags ]
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5, 0.1.1.0, 0.1.2.0, 0.2.0.0, 0.2.0.1, 0.2.1.0, 0.2.1.1, 0.2.1.2, 0.2.2.0, 0.2.2.2
Dependencies base (>=4.11 && <5), binary (>=0.8.6), containers (>=0.6) [details]
License MIT
Copyright 2017-2019 Matthieu Monsch
Author Matthieu Monsch
Maintainer mtth@apache.org
Category Data Structures
Home page https://github.com/mtth/more-containers
Bug tracker https://github.com/mtth/more-containers/issues
Source repo head: git clone https://github.com/mtth/more-containers
Uploaded by mtth at 2021-04-05T01:15:25Z
Distributions LTSHaskell:0.2.2.2, NixOS:0.2.2.2, Stackage:0.2.2.2
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 7046 total (48 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2021-04-05 [all 1 reports]

Readme for more-containers-0.2.2.2

[back to package description]

More containers Stackage LTS Stackage Nightly Hackage Build Status

  • Multimap

    [...] a multimap (sometimes also multihash or multidict) is a generalization of a map or associative array abstract data type in which more than one value may be associated with and returned for a given key. -- Wikipedia

  • Multiset

    [...] a multiset (aka bag or mset) is a modification of the concept of a set that, unlike a set, allows for multiple instances for each of its elements. -- Wikipedia