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. lazyConsume :: (MonadUnliftIO m, MonadActive m) => Source m a -> m [a]

    conduit-extra Data.Conduit.Lazy

    Use lazy I/O to consume all elements from a Source. This function relies on monadActive to determine if the underlying monadic state has been closed. Since 0.3.0

  2. sourceCmdWithConsumer :: MonadIO m => String -> ConduitT ByteString Void m a -> m (ExitCode, a)

    conduit-extra Data.Conduit.Process

    Like sourceProcessWithConsumer but providing the command to be run as a String. Requires the threaded runtime. Since 1.1.2

  3. sourceProcessWithConsumer :: MonadIO m => CreateProcess -> ConduitT ByteString Void m a -> m (ExitCode, a)

    conduit-extra Data.Conduit.Process

    Given a CreateProcess, run the process, with its output being used as a Source to feed the provided Consumer. Once the process has completed, return a tuple of the ExitCode from the process and the output collected from the Consumer. Note that, if an exception is raised by the consumer, the process is not terminated. This behavior is different from sourceProcessWithStreams due to historical reasons. Requires the threaded runtime. Since 1.1.2

  4. decompressUnconsumedInput :: DecompressStream (m :: Type -> Type) -> ByteString

    zlib Codec.Compression.Zlib.Internal

    No documentation available.

  5. data ModSummary

    ghc GHC

    Data for a module node in a ModuleGraph. Module nodes of the module graph are one of:

    • A regular Haskell source module
    • A hi-boot source module

  6. ModSummary :: Module -> HscSource -> ModLocation -> Fingerprint -> Maybe UTCTime -> !Maybe UTCTime -> Maybe UTCTime -> Maybe UTCTime -> [(PkgQual, Located ModuleName)] -> [(PkgQual, Located ModuleName)] -> Bool -> Maybe HsParsedModule -> FilePath -> DynFlags -> Maybe StringBuffer -> ModSummary

    ghc GHC

    No documentation available.

  7. Opt_SortBySubsumHoleFits :: GeneralFlag

    ghc GHC

    No documentation available.

  8. data Resume

    ghc GHC

    No documentation available.

  9. Resume :: String -> ForeignRef (ResumeContext [HValueRef]) -> ResumeBindings -> [Id] -> ForeignHValue -> Maybe InternalBreakpointId -> SrcSpan -> String -> RemotePtr CostCentreStack -> [History] -> Int -> Resume

    ghc GHC

    No documentation available.

  10. getModSummary :: GhcMonad m => ModuleName -> m ModSummary

    ghc GHC

    Return the ModSummary of a module with the given name. The module must be part of the module graph (see hsc_mod_graph and ModuleGraph). If this is not the case, this function will throw a GhcApiError. This function ignores boot modules and requires that there is only one non-boot module with the given name.

Page 86 of many | Previous | Next