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.
-
unordered-containers Data.HashSet.Internal A set of values. A set cannot contain duplicate values.
HashSet :: HashMap a () -> HashSet aunordered-containers Data.HashSet.Internal No documentation available.
isSubsetOf :: Hashable a => HashSet a -> HashSet a -> Boolunordered-containers Data.HashSet.Internal Inclusion of sets.
Examples
>>> fromList [1,3] `isSubsetOf` fromList [1,2,3] True
>>> fromList [1,2] `isSubsetOf` fromList [1,3] False
keysSet :: HashMap k a -> HashSet kunordered-containers Data.HashSet.Internal Produce a HashSet of all the keys in the given HashMap.
>>> HashSet.keysSet (HashMap.fromList [(1, "a"), (2, "b")] fromList [1,2]
-
binary Data.Binary.Get An offset, counted in bytes.
parseTest :: Show a => Parser a -> ByteString -> IO ()attoparsec Data.Attoparsec.ByteString Run a parser and print its result to standard output.
parseTest :: Show a => Parser a -> ByteString -> IO ()attoparsec Data.Attoparsec.ByteString.Char8 Run a parser and print its result to standard output.
parseTest :: Show a => Parser a -> ByteString -> IO ()attoparsec Data.Attoparsec.ByteString.Lazy Run a parser and print its result to standard output.
parseTest :: Show a => Parser a -> Text -> IO ()attoparsec Data.Attoparsec.Text Run a parser and print its result to standard output.
parseTest :: Show a => Parser a -> Text -> IO ()attoparsec Data.Attoparsec.Text.Lazy Run a parser and print its result to standard output.