Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
hw-bits HaskellWorks.Data.Bits.BitWise Bit-wise value of the given type with all bits set to zero
-
hw-bits HaskellWorks.Data.Bits.BitWise Bit-wise value of the given type with all bits set to one
-
hw-kafka-client Kafka.Metadata List and describe all consumer groups in cluster.
allTopicsMetadata :: (MonadIO m, HasKafka k) => k -> Timeout -> m (Either KafkaError KafkaMetadata)hw-kafka-client Kafka.Metadata Returns metadata for all topics in the cluster
alloc :: Region -> IO a -> (a -> IO ()) -> IO (a, Key)io-region Control.IO.Region Allocate resource inside the region
alloc_ :: Region -> IO a -> (a -> IO ()) -> IO aio-region Control.IO.Region The same as alloc, but doesn't return the key
allocationLimit :: ThreadOptions -> Maybe ByteCountki-unlifted Ki.Unlifted No documentation available.
-
language-c-quote Language.C.Parser.Monad No documentation available.
allAdjUnique :: Eq a => [a] -> Boollist-predicate Data.List.Predicate O(n). Whether all adjacent pairs of elements are different. Useful for determining whether a sorted list is all unique.
>>> allAdjUnique [1, 2, 3, 2] True >>> allAdjUnique [1, 2, 2, 3] False >>> allAdjUnique [] True >>> allAdjUnique [1] True
allAdjUniqueBy :: (a -> a -> Bool) -> [a] -> Boollist-predicate Data.List.Predicate O(n). Like allAdjUnique, with a custom equality test.
>>> allAdjUniqueBy ((==) `on` head) ["apple", "bow", "cat", "ant"] True >>> allAdjUniqueBy ((==) `on` head) ["apple", "ant", "bow", "cat"] False