Hoogle Search

Within LTS Haskell 24.55 (ghc-9.10.3)

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

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

    ghc GHC.Tc.Gen.HsType

    No documentation available.

  2. data HoleSort

    ghc GHC.Tc.Types.Constraint

    Used to indicate which sort of hole we have.

  3. hole_sort :: Hole -> HoleSort

    ghc GHC.Tc.Types.Constraint

    What flavour of hole is this?

  4. 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

  5. data TupleSort

    ghc GHC.Types.Basic

    No documentation available.

  6. boxityTupleSort :: Boxity -> TupleSort

    ghc GHC.Types.Basic

    No documentation available.

  7. tupleSortBoxity :: TupleSort -> Boxity

    ghc GHC.Types.Basic

    No documentation available.

  8. 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.

  9. isSortedBy :: (a -> a -> Ordering) -> [a] -> Bool

    ghc GHC.Utils.Misc

    No documentation available.

  10. nubSort :: Ord a => [a] -> [a]

    ghc GHC.Utils.Misc

    No documentation available.

Page 110 of many | Previous | Next