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.
extendUnVarSetList :: [Var] -> UnVarSet -> UnVarSetghc GHC.Data.Graph.UnVar No documentation available.
isEmptyUnVarSet :: UnVarSet -> Boolghc GHC.Data.Graph.UnVar No documentation available.
mkUnVarSet :: [Var] -> UnVarSetghc GHC.Data.Graph.UnVar No documentation available.
unionUnVarSet :: UnVarSet -> UnVarSet -> UnVarSetghc GHC.Data.Graph.UnVar No documentation available.
unionUnVarSets :: [UnVarSet] -> UnVarSetghc GHC.Data.Graph.UnVar No documentation available.
findHashOffset :: StringBuffer -> Intghc GHC.Data.StringBuffer Find the offset of the # character in the StringBuffer. Make sure that it contains one before calling this function!
offsetBytes :: Int -> StringBuffer -> StringBufferghc 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.
fromSet :: (Key -> a) -> Word64Set -> Word64Map aghc 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
keysSet :: Word64Map a -> Word64Setghc 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
fromSet :: (Key -> a) -> Word64Set -> Word64Map aghc 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