OpenAFP-1.2: IBM AFP document format parser and generator

Portabilitynon-portable (GHC-only)
Stabilityexperimental
Maintaineraudreyt@audreyt.org

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 = (MonadPlus m, MonadIO m, MonadError e m, Show e, Typeable e) => m aSource

type StateIO v a = (MonadPlus m, MonadIO m, MonadReader v m, MonadError e m, Show e, Typeable e) => m aSource

hashNew :: (key -> key -> Bool) -> (key -> Int32) -> IO (HashTable key val)Source

hashLookup :: HashTable key val -> key -> IO (Maybe val)Source

hashInsert :: HashTable key val -> key -> val -> IO ()Source

hashDelete :: HashTable key val -> key -> IO ()Source

statePut :: MonadState s m => s -> m ()Source