packages feed

assoc-list-0.1.0.0: README.md

# 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.

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