Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readHexFingerprint :: String -> Fingerprint

    ghc GHC.Utils.Fingerprint

    No documentation available.

  2. readHexRational :: String -> Rational

    ghc GHC.Utils.Misc

    No documentation available.

  3. readHexSignificandExponentPair :: String -> (Integer, Integer)

    ghc GHC.Utils.Misc

    Parse a string into a significand and exponent according to the "Hexadecimal Floats in Haskell" proposal. A trivial example might be: ghci> readHexSignificandExponentPair "0x1p+1" (1,1) Behaves similar to readSignificandExponentPair but the base is 16 and numbers are given in hexadecimal: ghci> readHexSignificandExponentPair "0xAp-4" (10,-4) ghci> readHexSignificandExponentPair "0x1.2p3" (18,-1)

  4. readRational :: String -> Rational

    ghc GHC.Utils.Misc

    No documentation available.

  5. readSignificandExponentPair :: String -> (Integer, Integer)

    ghc GHC.Utils.Misc

    Parse a string into a significand and exponent. A trivial example might be: ghci> readSignificandExponentPair "1E2" (1,2) In a more complex case we might return a exponent different than that which the user wrote. This is needed in order to use a Integer significand. ghci> readSignificandExponentPair "-1.11E5" (-111,3)

  6. readToUnknown :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlBackend m a

    persistent Database.Persist.Sql

    Useful for running a read query against a backend with unknown capabilities.

  7. readToWrite :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlWriteBackend m a

    persistent Database.Persist.Sql

    Useful for running a read query against a backend with read and write capabilities.

  8. readToUnknown :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlBackend m a

    persistent Database.Persist.Sql.Types.Internal

    Useful for running a read query against a backend with unknown capabilities.

  9. readToWrite :: forall (m :: Type -> Type) a . Monad m => ReaderT SqlReadBackend m a -> ReaderT SqlWriteBackend m a

    persistent Database.Persist.Sql.Types.Internal

    Useful for running a read query against a backend with read and write capabilities.

  10. readDesc :: UserHooks -> IO (Maybe GenericPackageDescription)

    Cabal Distribution.Simple

    Read the description file

Page 114 of many | Previous | Next