@hackage assoc-list0.1.0.1

Association lists (lists of tuples)

assoc-list

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 type alias for a list of tuples.

type AssocList a b = [(a, b)]