Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
livestop :: Monad m => p -> m Stringessence-of-live-coding LiveCoding.GHCi Stop the program.
storableCast :: (Storable a, Storable b) => a -> IO bbindings-DSL Bindings.Utilities storableCast works like storableCastArray, except that it takes a single value and returns a single value.
decodeFile :: Binary a => FilePath -> IO abinary Data.Binary Decode a value from a file. In case of errors, error will be called with the error message.
readYamlFile :: FromYaml a => FilePath -> IO ayaml Data.Yaml.Parser No documentation available.
safeShowException :: Exception e => e -> IO Stringghc GHC.Utils.Panic Show an exception which can possibly throw other exceptions. Used when displaying exception thrown within TH code.
safeShowException :: Exception e => e -> IO Stringghc-lib-parser GHC.Utils.Panic Show an exception which can possibly throw other exceptions. Used when displaying exception thrown within TH code.
writePublicKey :: PublicKey key => key -> IO StringHsOpenSSL OpenSSL.PEM writePublicKey pubkey writes a public to PEM string.
readFileDeserialise :: Serialise a => FilePath -> IO aserialise Codec.Serialise Read the specified file (internally, by reading a ByteString) and attempt to decode it into a Haskell value using deserialise (the type of which is determined by the choice of the result type). Throws: DeserialiseFailure if the file fails to deserialise properly.
readFileDeserialise :: Serialise a => FilePath -> IO aserialise Codec.Serialise.IO Read the specified file (internally, by reading a ByteString) and attempt to decode it into a Haskell value using deserialise (the type of which is determined by the choice of the result type). Throws: DeserialiseFailure if the file fails to deserialise properly.
fReadXml :: XmlContent a => FilePath -> IO aHaXml Text.XML.HaXml.XmlContent Read an XML document from a file and convert it to a fully-typed Haskell value.