assoc-listlike-0.1.0.0: Association lists (list-like collections of tuples)

Safe HaskellNone
LanguageHaskell2010

Data.AssocList.ListLike.Concept

Contents

Synopsis

Association list type

type AssocList l a b = ListLike l (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

(!) :: (LikeLike l (a, b), Eq a) => l -> a -> b

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

Constructors

MissingAssocListKey