 | Haskell Hierarchical Libraries (collections package) | Contents | Index |
|
| Data.Trie.String.Types | | Portability | portable | | Stability | provisional | | Maintainer | http://homepages.nildram.co.uk/~ahey/em.png |
|
|
|
|
|
| Description |
| Type definitions for StringMap.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| data StringMap a |
| StringMap type.
| | Constructors | | Instances | |
|
|
| empty :: StringMap a |
| The empty StringMap.
|
|
| singleton :: String -> a -> StringMap a |
| Create a singleton from a (possibly empty) String.
|
|
| singletonNE :: Char -> String -> a -> StringMap a |
Create a singleton from a non-empty String.
DO NOT USE THIS - IT WON'T WORK. It's for internal use only and is not exported by the
main Data.StringMap module. Use singleton instead.
|
|
| isEmpty :: StringMap a -> Bool |
| Returns True if a StringMap is empty.
|
|
| isNonEmpty :: StringMap a -> Bool |
| Returns True if a StringMap is non-empty.
|
|
| Produced by Haddock version 0.7 |