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.
withForkWait :: IO () -> (IO () -> IO a) -> IO aprocess 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.
-
http-types Network.HTTP.Types statusIsInformational :: Status -> Boolhttp-types Network.HTTP.Types Informational class Checks if the status is in the 1XX range.
unavailableForLegalReasons451 :: Statushttp-types Network.HTTP.Types Unavailable For Legal Reasons 451 (RFC 7725)
-
http-types Network.HTTP.Types.Header statusIsInformational :: Status -> Boolhttp-types Network.HTTP.Types.Status Informational class Checks if the status is in the 1XX range.
unavailableForLegalReasons451 :: Statushttp-types Network.HTTP.Types.Status Unavailable For Legal Reasons 451 (RFC 7725)
byteArrayAsForeignPtr :: ByteArray -> ForeignPtr Word8primitive 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.
mutableByteArrayAsForeignPtr :: MutableByteArray RealWorld -> ForeignPtr Word8primitive 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.
rawForkIO :: IO () -> IO ThreadIdasync Control.Concurrent.Async.Internal No documentation available.