Description
Association lists (lists of tuples)
Description
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)]
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.
type AssocList a b = [(a, b)]