Copyright | (c) Audrey Tang 2004-2011 |
---|---|
License | PublicDomain |
Maintainer | [email protected] |
Stability | experimental |
Portability | non-portable (GHC-only) |
Safe Haskell | None |
Language | Haskell98 |
OpenAFP.Internals
Description
This module imports and re-exports external modules used by OpenAFP, as well as OpenAFP's own internal modules.
Documentation
type IOm a = forall m e. (MonadPlus m, MonadIO m, MonadError e m, Show e, Typeable e) => m a Source #
type StateIO v a = forall m e. (MonadPlus m, MonadIO m, MonadReader v m, MonadError e m, Show e, Typeable e) => m a Source #
type BS = ByteString Source #
type HashTable k v = CuckooHashTable k v Source #
hashCreate :: IO (HashTable k v) Source #
stateGet :: MonadState s m => m s Source #
statePut :: MonadState s m => s -> m () Source #