Hoogle Search

Within LTS Haskell 24.41 (ghc-9.10.3)

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

  1. lineInteract :: ([String] -> [String]) -> IO ()

    MissingH System.IO.Utils

    Line-based interaction. This is similar to wrapping your interact functions with lines and unlines. This equality holds:

    lineInteract = hLineInteract stdin stdout
    
    Here's an example:
    main = lineInteract (filter (startswith "1"))
    
    This will act as a simple version of grep -- all lines that start with 1 will be displayed; all others will be ignored.

  2. optimizeForInteraction :: IO ()

    MissingH System.IO.Utils

    Sets stdin and stdout to be line-buffered. This saves resources on stdout, but not many on stdin, since it it still looking for newlines.

  3. mkInteractiveModule :: String -> Module

    ghc-lib-parser GHC.Builtin.Names

    No documentation available.

  4. sfInteract :: BuiltInSynFamily -> [BuiltInFamInjectivity]

    ghc-lib-parser GHC.Builtin.Types.Literals

    No documentation available.

  5. tryInteractInertFam :: BuiltInSynFamily -> TyCon -> [Type] -> [Type] -> [(CoAxiomRule, TypeEqn)]

    ghc-lib-parser GHC.Builtin.Types.Literals

    No documentation available.

  6. tryInteractTopFam :: BuiltInSynFamily -> TyCon -> [Type] -> Type -> [(CoAxiomRule, TypeEqn)]

    ghc-lib-parser GHC.Builtin.Types.Literals

    No documentation available.

  7. BIF_Interact :: FastString -> CoAxiomRule -> (TypeEqn -> Maybe TypeEqn) -> BuiltInFamInjectivity

    ghc-lib-parser GHC.Core.Coercion.Axiom

    No documentation available.

  8. sfInteract :: BuiltInSynFamily -> [BuiltInFamInjectivity]

    ghc-lib-parser GHC.Core.Coercion.Axiom

    No documentation available.

  9. getInteractiveContext :: CoreM InteractiveContext

    ghc-lib-parser GHC.Core.Opt.Monad

    No documentation available.

  10. mkInteractiveHscEnv :: HscEnv -> HscEnv

    ghc-lib-parser GHC.Driver.Env

    Switches in the DynFlags and Plugins from the InteractiveContext

Page 24 of many | Previous | Next