Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Test.MockCat.AssociationList
Documentation
type AssociationList k a = [(k, a)] Source #
empty :: AssociationList k a Source #
insert :: Eq k => k -> a -> AssociationList k a -> AssociationList k a Source #
update :: Eq k => (a -> a) -> k -> AssociationList k a -> AssociationList k a Source #