Hoogle Search

Within Stackage Nightly 2025-09-30 (ghc-9.12.2)

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

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

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  2. isEmptyUnVarSet :: UnVarSet -> Bool

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  3. mkUnVarSet :: [Var] -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  4. unionUnVarSet :: UnVarSet -> UnVarSet -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  5. unionUnVarSets :: [UnVarSet] -> UnVarSet

    ghc GHC.Data.Graph.UnVar

    No documentation available.

  6. findHashOffset :: StringBuffer -> Int

    ghc GHC.Data.StringBuffer

    Find the offset of the # character in the StringBuffer. Make sure that it contains one before calling this function!

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

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

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

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

    ghc GHC.Data.Word64Map.Lazy

    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
    

Page 80 of many | Previous | Next