Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. withForkWait :: IO () -> (IO () -> IO a) -> IO a

    process System.Process.Internals

    Fork a thread while doing something else, but kill it if there's an exception. This is important in the cases above because we want to kill the thread that is holding the Handle lock, because when we clean up the process we try to close that handle, which could otherwise deadlock.

  2. hMaxForwards :: HeaderName

    http-types Network.HTTP.Types

    Max-Forwards

  3. statusIsInformational :: Status -> Bool

    http-types Network.HTTP.Types

    Informational class Checks if the status is in the 1XX range.

  4. unavailableForLegalReasons451 :: Status

    http-types Network.HTTP.Types

    Unavailable For Legal Reasons 451 (RFC 7725)

  5. hMaxForwards :: HeaderName

    http-types Network.HTTP.Types.Header

    Max-Forwards

  6. statusIsInformational :: Status -> Bool

    http-types Network.HTTP.Types.Status

    Informational class Checks if the status is in the 1XX range.

  7. unavailableForLegalReasons451 :: Status

    http-types Network.HTTP.Types.Status

    Unavailable For Legal Reasons 451 (RFC 7725)

  8. byteArrayAsForeignPtr :: ByteArray -> ForeignPtr Word8

    primitive Data.Primitive.ByteArray

    Create a foreign pointer that points to the array's data. This operation is only safe on pinned byte arrays. The array's data is not garbage collected while references to the foreign pointer exist. Writing to the array through the foreign pointer results in undefined behavior.

  9. mutableByteArrayAsForeignPtr :: MutableByteArray RealWorld -> ForeignPtr Word8

    primitive Data.Primitive.ByteArray

    Variant of byteArrayAsForeignPtr for mutable byte arrays. Similarly, this is only safe on pinned mutable byte arrays. This function differs from the variant for immutable arrays in that it is safe to write to the array though the foreign pointer.

  10. rawForkIO :: IO () -> IO ThreadId

    async Control.Concurrent.Async.Internal

    No documentation available.

Page 415 of many | Previous | Next