@hackage assoc-listlike0.1.0.1

Association lists (list-like collections of tuples)

assoc-listlike

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)