|
| Data.AssocList | | Portability | portable | | Stability | stable | | Maintainer | Uwe Schmidt (uwe@fh-wedel.de) |
|
|
|
| Description |
| Simple key value assocciation list
implemented as unordered list of pairs
|
|
| 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.6.1 |