forked from GitHub/gf-core
Renamed appIOE to tryIOE (it is analogous to 'try' in the standard libraries). Removed unused IOE operations & documented the remaining ones. Removed/simplified superfluous uses of IOE operations.
20 lines
564 B
Haskell
20 lines
564 B
Haskell
module GF.Support(
|
|
-- * Supporting infrastructure and system utilities
|
|
module GF.Infra.Location,
|
|
module GF.Infra.Option,
|
|
module GF.Data.Operations,
|
|
module GF.Infra.UseIO,
|
|
module GF.System.Catch,
|
|
module GF.System.Console,
|
|
-- ** Binary serialisation
|
|
Binary,encode,decode,encodeFile,decodeFile
|
|
) where
|
|
|
|
import GF.Infra.Location
|
|
import GF.Data.Operations
|
|
import GF.Infra.Option
|
|
import GF.Infra.UseIO
|
|
import GF.System.Catch
|
|
import GF.System.Console
|
|
import Data.Binary
|