|
|
|
| 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 |
|
|
|
| lookup with default value
|
|
|
| lookup with empty list (empty string) as default value
|
|
|
| test for existence of a key
|
|
|
| add an entry, remove an existing entry before adding the new one at the top of the list, addEntry is strict
|
|
|
| add a whole list of entries with addEntry
|
|
|
| delete an entry, delEntry is strict
|
|
|
| delete a list of entries with delEntry
|
|
| Produced by Haddock version 2.4.2 |