assoc-listlike

Association lists (list-like collections of tuples)

https://github.com/typeclasses/assoc-list

Latest on Hackage:0.1.0.1@rev:1

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

MIT licensed by Chris Martin
Maintained by Chris Martin, Julie Moronuki

An association list conceptually signifies a mapping, but is represented as a list (of key-value pairs).

This package defines an association list as a constraint synonym for a list-like collection of tuples, using the ListLike type class from the ListLike package.

type AssocList l a b = ListLike l (a, b)