dependent-hashmap: Dependent hash maps

[ bsd3, data, library ] [ Propose Tags ]

Provides DHashMap, a type for hash maps where the keys can specify the type of value that is associated with them.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1
Dependencies base (>=4.7 && <5), constraints-extras (>=0.3), dependent-sum (>=0.6), hashable (>=1.3), unordered-containers (>=0.2.9) [details]
License BSD-3-Clause
Copyright 2020 Olle Fredriksson
Author Olle Fredriksson
Maintainer fredriksson.olle@gmail.com
Category Data
Home page https://github.com/ollef/dependent-hashmap#readme
Uploaded by OlleFredriksson at 2020-03-02T22:19:39Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 791 total (16 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-03-03 [all 1 reports]

Readme for dependent-hashmap-0.1.0.1

[back to package description]

dependent-hashmap Build Status Hackage

This is hash map library where the keys can specify the type of value that is associated with them by using type indices.

This library is to dependent-map what Data.HashMap.Lazy is to Data.Map.

It's implemented as a thin wrapper around Data.HashMap.Lazy, and has roughly the same interface.