hxt-8.3.2: A collection of tools for processing XML with Haskell.

Data.AssocList

Description

simple key value assocciation list implemented as unordered list of pairs

Version : $Id: AssocList.hs,v 1.2 20050527 13:15:23 hxml Exp $

Synopsis

Documentation

type AssocList k v = [(k, v)]Source

lookupDef :: Eq k => v -> k -> AssocList k v -> vSource

lookup with default value

lookup1 :: Eq k => k -> AssocList k [e] -> [e]Source

lookup with empty list (empty string) as default value

hasEntry :: Eq k => k -> AssocList k v -> BoolSource

test for existence of a key

addEntry :: Eq k => k -> v -> AssocList k v -> AssocList k vSource

add an entry, remove an existing entry before adding the new one at the top of the list, addEntry is strict

addEntries :: Eq k => AssocList k v -> AssocList k v -> AssocList k vSource

add a whole list of entries with addEntry

delEntry :: Eq k => k -> AssocList k v -> AssocList k vSource

delete an entry, delEntry is strict

delEntries :: Eq k => [k] -> AssocList k v -> AssocList k vSource

delete a list of entries with delEntry