Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. _unRead :: InputStream a -> a -> IO ()

    io-streams System.IO.Streams.Internal

    No documentation available.

  2. unRead :: a -> InputStream a -> IO ()

    io-streams System.IO.Streams.Internal

    Pushes a value back onto an input stream. read and unRead should satisfy the following law, with the possible exception of side effects:

    Streams.unRead c stream >> Streams.read stream === return (Just c)
    
    Note that this could be used to add values back to the stream that were not originally drawn from the stream.

  3. loRead :: Connection -> LoFd -> Int -> IO ByteString

    postgresql-simple Database.PostgreSQL.Simple.LargeObjects

    No documentation available.

  4. DefaultReadWriteMode :: ReadWriteMode

    postgresql-simple Database.PostgreSQL.Simple.Transaction

    the read-write mode will be taken from PostgreSQL's per-connection default_transaction_read_only variable, which is initialized according to the server's config. The default configuration is ReadWrite.

  5. RepeatableRead :: IsolationLevel

    postgresql-simple Database.PostgreSQL.Simple.Transaction

    No documentation available.

  6. defaultReadWriteMode :: ReadWriteMode

    postgresql-simple Database.PostgreSQL.Simple.Transaction

    No documentation available.

  7. ErrorReadOnly :: Error

    persistent-sqlite Database.Sqlite

    No documentation available.

  8. data ThreadId

    rio RIO

    A ThreadId is an abstract type representing a handle to a thread. ThreadId is an instance of Eq, Ord and Show, where the Ord instance implements an arbitrary total ordering over ThreadIds. The Show instance lets you convert an arbitrary-valued ThreadId to string form; showing a ThreadId value is occasionally useful when debugging or diagnosing the behaviour of a concurrent program. Note: in GHC, if you have a ThreadId, you essentially have a pointer to the thread itself. This means the thread itself can't be garbage collected until you drop the ThreadId. This misfeature would be difficult to correct while continuing to support threadStatus.

  9. isCurrentThreadBound :: MonadIO m => m Bool

    rio RIO

    Lifted version of isCurrentThreadBound.

  10. myThreadId :: MonadIO m => m ThreadId

    rio RIO

    Lifted version of myThreadId.

Page 491 of many | Previous | Next