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.
parallelThreadPool :: MonadIO m => Int -> m (ThreadPool m a b)HTF Test.Framework.ThreadPool No documentation available.
-
HaXml Text.XML.HaXml.Namespaces resolveAllNames in a document, causes every name to be properly qualified with its namespace. There is a default namespace for any name that was originally unqualified. This is likely only useful when dealing with parsed document, less useful when generating a document from scratch.
env_allTypes :: Environment -> Map QName (Either SimpleType ComplexType)HaXml Text.XML.HaXml.Schema.Environment all type definitions, regardless of scope
guessAllExtensions :: MIMETypeData -> Bool -> String -> [String]MissingH Data.MIME.Types Similar to guessExtension, but returns a list of all possible matching extensions, or the empty list if there are no matches.
type
ProgressCallback = ProgressStatus -> ProgressStatus -> IO ()MissingH Data.Progress.Tracker The type for a callback function for the progress tracker. When given at creation time to 'newProgress'' or when added via addCallback, these functions get called every time the status of the tracker changes. This function is passed two ProgressStatus records: the first reflects the status prior to the update, and the second reflects the status after the update. Please note that the owning Progress object will be locked while the callback is running, so the callback will not be able to make changes to it.
addCallback :: Progress -> ProgressCallback -> IO ()MissingH Data.Progress.Tracker Adds an new callback to an existing Progress. The callback will be called whenever the object's status is updated, except by the call to finishP. Please note that the Progress object will be locked while the callback is running, so the callback will not be able to make any modifications to it.
getAll :: MailboxReader a b => a -> IO [(b, Flags, Message)]MissingH Network.Email.Mailbox Returns a list of all messages, including their content, flags, and unique identifiers.
valList :: Val a => [a] -> Valuebson Data.Bson No documentation available.
mallocForeignPtrArrayAligned :: Storable a => Int -> IO (ForeignPtr a)carray Data.Array.CArray.Base Allocate an array which is 16-byte aligned. Essential for SIMD instructions.
mallocForeignPtrBytesAligned :: Int -> IO (ForeignPtr a)carray Data.Array.CArray.Base Allocate memory which is 16-byte aligned. This is essential for SIMD instructions. We know that mallocPlainForeignPtrBytes will give word-aligned memory, so we pad enough to be able to return the desired amount of memory after aligning our pointer.