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. Opt_SortValidHoleFits :: GeneralFlag

    ghc GHC.Driver.Session

    No documentation available.

  2. data HsTupleSort

    ghc GHC.Hs.Type

    Haskell Tuple Sort

  3. mergeSortAsts :: [HieAST Type] -> [HieAST Type]

    ghc GHC.Iface.Ext.Utils

    combines and sorts ASTs using a merge sort

  4. data IfaceTyConSort

    ghc GHC.Iface.Type

    The various types of TyCons which have special, built-in syntax.

  5. ifaceTyConSort :: IfaceTyConInfo -> IfaceTyConSort

    ghc GHC.Iface.Type

    No documentation available.

  6. data AnnSortKey tag

    ghc GHC.Parser.Annotation

    Captures the sort order of sub elements for ValBinds, ClassDecl, ClsInstDecl

  7. AnnSortKey :: [tag] -> AnnSortKey tag

    ghc GHC.Parser.Annotation

    No documentation available.

  8. NoAnnSortKey :: AnnSortKey tag

    ghc GHC.Parser.Annotation

    No documentation available.

  9. scopedSort :: [TyCoVar] -> [TyCoVar]

    ghc GHC.Plugins

    Do a topological sort on a list of tyvars, so that binders occur before occurrences E.g. given [ a::k, k::*, b::k ] it'll return a well-scoped list [ k::*, a::k, b::k ] This is a deterministic sorting operation (that is, doesn't depend on Uniques). It is also meant to be stable: that is, variables should not be reordered unnecessarily. This is specified in Note [ScopedSort] See also Note [Ordering of implicit variables] in GHC.Rename.HsType

  10. depSortWithAnnotStgPgm :: Module -> [StgTopBinding] -> [(CgStgTopBinding, ImpFVs)]

    ghc GHC.Stg.FVs

    Dependency sort a STG program, and annotate it with free variables The returned bindings: * Are in dependency order * Each StgRhsClosure is correctly annotated (in its extension field) with the free variables needed in the closure * Each StgCase is correctly annotated (in its extension field) with the variables that must be saved across the case

Page 107 of many | Previous | Next