Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. data DataSort

    ghc GHC.Tc.Gen.HsType

    A description of whether something is a

    At present, this data type is only consumed by checkDataKindSig.

  2. scopedSortOuter :: HsOuterTyVarBndrs flag GhcTc -> TcM (HsOuterTyVarBndrs flag GhcTc)

    ghc GHC.Tc.Gen.HsType

    No documentation available.

  3. zonkAndScopedSort :: [TcTyVar] -> TcM [TcTyVar]

    ghc GHC.Tc.Gen.HsType

    No documentation available.

  4. data HoleSort

    ghc GHC.Tc.Types.Constraint

    Used to indicate which sort of hole we have.

  5. hole_sort :: Hole -> HoleSort

    ghc GHC.Tc.Types.Constraint

    What flavour of hole is this?

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

    ghc GHC.Tc.Utils.TcType

    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

  7. data TupleSort

    ghc GHC.Types.Basic

    No documentation available.

  8. boxityTupleSort :: Boxity -> TupleSort

    ghc GHC.Types.Basic

    No documentation available.

  9. tupleSortBoxity :: TupleSort -> Boxity

    ghc GHC.Types.Basic

    No documentation available.

  10. filterToposortToModules :: [SCC ModuleGraphNode] -> [SCC ModSummary]

    ghc GHC.Unit.Module.Graph

    This function filters out all the instantiation nodes from each SCC of a topological sort. Use this with care, as the resulting "strongly connected components" may not really be strongly connected in a direct way, as instantiations have been removed. It would probably be best to eliminate uses of this function where possible.

Page 101 of many | Previous | Next