Hoogle Search

Within LTS Haskell 24.12 (ghc-9.10.3)

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

  1. deleteList :: Ord key => [key] -> Map key elt -> Map key elt

    ghc GHC.Data.FiniteMap

    No documentation available.

  2. insertList :: Ord key => [(key, elt)] -> Map key elt -> Map key elt

    ghc GHC.Data.FiniteMap

    No documentation available.

  3. insertListWith :: Ord key => (elt -> elt -> elt) -> [(key, elt)] -> Map key elt -> Map key elt

    ghc GHC.Data.FiniteMap

    No documentation available.

  4. fromList :: Word -> [a] -> FlatBag a

    ghc GHC.Data.FlatBag

    Store the list in a flattened memory representation, avoiding the memory overhead of a linked list. The size n needs to be smaller or equal to the length of the list. If it is smaller than the length of the list, overflowing elements are discarded. It is undefined behaviour to set n to be bigger than the length of the list.

  5. delUnVarSetList :: UnVarSet -> [Var] -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  6. extendUnVarSetList :: [Var] -> UnVarSet -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  7. allListsOf :: [a] -> Infinite [a]

    ghc GHC.Data.List.Infinite

    Compute all lists of the given alphabet. For example: allListsOf "ab" = ["a", "b", "aa", "ba", "ab", "bb", "aaa", "baa", "aba", ...]

  8. dropList :: [a] -> Infinite b -> Infinite b

    ghc GHC.Data.List.Infinite

    No documentation available.

  9. toList :: Infinite a -> [a]

    ghc GHC.Data.List.Infinite

    No documentation available.

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

    ghc GHC.Data.List.SetOps

    Calculate the set difference of two lists. This is O((m + n) log n), where we subtract a list of n elements from a list of m elements. Extremely short cases are handled specially: When m or n is 0, this takes O(1) time. When m is 1, it takes O(n) time.

Page 60 of many | Previous | Next