mockcat-0.5.1.0: Mock library for test in Haskell.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Test.MockCat.AssociationList

Documentation

type AssociationList k a = [(k, a)] Source #

insert :: Eq k => k -> a -> AssociationList k a -> AssociationList k a Source #

lookup :: Eq k => k -> AssociationList k a -> Maybe a Source #

member :: Eq k => k -> AssociationList k a -> Bool Source #

(!?) :: Eq k => AssociationList k a -> k -> Maybe a Source #

update :: Eq k => (a -> a) -> k -> AssociationList k a -> AssociationList k a Source #