MIT licensed by Li-yao Xia
Maintained by [email protected]
This version can be pinned in stack with:type-map-0.1.6.0@sha256:ba11417d1fb5a99bfce125e4bd7a10e6eeffe05bb0c76f866e32e9a767c4ca13,2310

Module documentation for 0.1.6.0

Type-indexed maps Hackage Build Status

Maps whose keys are types.

This package includes:

  • a dynamic type map using GHC’s Typeable class, with a Proxy-based API (Data.TypeMap.Dynamic) or a TypeApplications-based API (Data.TypeMap.Dynamic.Alt); Supports arbitrary, user-defined mappings between keys and types of values via defunctionalization.

  • a static type map, whose type is indexed by its list of keys (there are actually multiple implementations with different underlying representations ([], Map, Vector)).

Example using the dynamically-typed interface.

See also this package’s description on Hackage.

Related

Internal module policy

Modules under Data.TypeMap.Internal are not subject to any versioning policy. Breaking changes may apply to them at any time.

If something in those modules seems useful, please report it or create a pull request to export it from an external module.

Changes

0.1.6.0

  • Add toList, toListMap. (deepfire)

0.1.5.0

  • Add role annotations for all the various type maps. Now the parameters have nominal roles.

    Previously, they had phantom roles, which broke uses of unsafeCoerce.

0.1.4.0

  • Add (<:) to Dynamic. (deepfire)

0.1.3.0

  • Add update to Dynamic. (deepfire)

0.1.2.0

  • Update Dynamic
    • Export empty
    • Add size, delete, union, difference, intersection

0.1.1.0

  • Compatible with GHC 8.2