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. emptyUnVarSet :: UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  2. extendUnVarSet :: Var -> UnVarSet -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

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

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  4. isEmptyUnVarSet :: UnVarSet -> Bool

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  5. mkUnVarSet :: [Var] -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  6. unionUnVarSet :: UnVarSet -> UnVarSet -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  7. unionUnVarSets :: [UnVarSet] -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  8. offsetBytes :: Int -> StringBuffer -> StringBuffer

    ghc GHC.Data.StringBuffer

    Return a StringBuffer with the first n bytes removed. Warning: If there aren't enough characters, the returned StringBuffer will be invalid and any use of it may lead to undefined behavior. The result shares the same buffer as the original.

  9. fromSet :: (Key -> a) -> Word64Set -> Word64Map a

    ghc GHC.Data.Word64Map.Internal

    Build a map from a set of keys and a function which for each key computes its value.

    fromSet (\k -> replicate k 'a') (Data.Word64Set.fromList [3, 5]) == fromList [(5,"aaaaa"), (3,"aaa")]
    fromSet undefined Data.Word64Set.empty == empty
    

  10. keysSet :: Word64Map a -> Word64Set

    ghc GHC.Data.Word64Map.Internal

    The set of all keys of the map.

    keysSet (fromList [(5,"a"), (3,"b")]) == Data.Word64Set.fromList [3,5]
    keysSet empty == Data.Word64Set.empty
    

Page 82 of many | Previous | Next