Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. readWordArray# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Word# #)

    base GHC.Base

    Read a word-sized unsigned integer; offset in machine words. Warning: this can fail with an unchecked exception.

  2. readWordOffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Word# #)

    base GHC.Base

    Read a word-sized unsigned integer; offset in machine words. On some platforms, the access may fail for an insufficiently aligned Addr#. Warning: this can fail with an unchecked exception.

  3. readTVar :: TVar a -> STM a

    base GHC.Conc

    Return the current value stored in a TVar.

  4. readTVarIO :: TVar a -> IO a

    base GHC.Conc

    Return the current value stored in a TVar. This is equivalent to

    readTVarIO = atomically . readTVar
    
    but works much faster, because it doesn't perform a complete transaction, it just reads the current value of the TVar.

  5. readTVar :: TVar a -> STM a

    base GHC.Conc.Sync

    Return the current value stored in a TVar.

  6. readTVarIO :: TVar a -> IO a

    base GHC.Conc.Sync

    Return the current value stored in a TVar. This is equivalent to

    readTVarIO = atomically . readTVar
    
    but works much faster, because it doesn't perform a complete transaction, it just reads the current value of the TVar.

  7. readAddrArray# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Addr# #)

    base GHC.Exts

    Read a machine address; offset in machine words. Warning: this can fail with an unchecked exception.

  8. readAddrOffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Addr# #)

    base GHC.Exts

    Read a machine address; offset in machine words. On some platforms, the access may fail for an insufficiently aligned Addr#. Warning: this can fail with an unchecked exception.

  9. readCharArray# :: MutableByteArray# d -> Int# -> State# d -> (# State# d, Char# #)

    base GHC.Exts

    Read an 8-bit character; offset in bytes. Warning: this can fail with an unchecked exception.

  10. readCharOffAddr# :: Addr# -> Int# -> State# d -> (# State# d, Char# #)

    base GHC.Exts

    Read an 8-bit character; offset in bytes. Warning: this can fail with an unchecked exception.

Page 44 of many | Previous | Next