Hoogle Search
Within LTS Haskell 24.2 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mkPreludeDataConUnique :: Int -> Uniqueghc GHC.Builtin.Uniques No documentation available.
mkPreludeMiscIdUnique :: Int -> Uniqueghc GHC.Builtin.Uniques No documentation available.
mkPreludeTyConUnique :: Int -> Uniqueghc GHC.Builtin.Uniques No documentation available.
Opt_WarnImplicitPrelude :: WarningFlagghc GHC.Driver.DynFlags No documentation available.
Opt_WarnImplicitPrelude :: WarningFlagghc GHC.Driver.Flags No documentation available.
Opt_WarnImplicitPrelude :: WarningFlagghc GHC.Driver.Session No documentation available.
-
Custom GHC Prelude This module serves as a replacement for the Prelude module and abstracts over differences between the bootstrapping GHC version, and may also provide a common default vocabulary.
TcRnImplicitImportOfPrelude :: TcRnMessageghc GHC.Tc.Errors.Types TcRnImplicitImportOfPrelude is a warning, controlled by Wimplicit-prelude, that is triggered upon an implicit import of the Prelude module. Example: {-# OPTIONS_GHC -fwarn-implicit-prelude #-} module M where {} Test case: rn055
-
No documentation available.
-
General purpose utilities The names in this module clash heavily with the Haskell Prelude, so I recommend the following import scheme:
import Pipes import qualified Pipes.Prelude as P -- or use any other qualifier you prefer
Note that String-based IO is inefficient. The String-based utilities in this module exist only for simple demonstrations without incurring a dependency on the text package. Also, stdinLn and stdoutLn remove and add newlines, respectively. This behavior is intended to simplify examples. The corresponding stdin and stdout utilities from pipes-bytestring and pipes-text preserve newlines.