assoc-list-0.1.0.1: Association lists (lists of tuples)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.AssocList.List.Concept

Synopsis

Association list type

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

Related modules

Exception

data MissingAssocListKey Source #

This exception shows up when one attempts to retrieve a value by key from an association list using a partial function with a type signature such as

(!) :: Eq a => AssocList a b -> a -> b

but no result can be obtained because the requested key is not present exists in the mapping.

Constructors

MissingAssocListKey