Hoogle Search
Within LTS Haskell 24.5 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
update_crc_list :: Word32 -> [Char] -> Word32MissingH Data.Hash.CRC32.GZip No documentation available.
-
MissingH Data.Hash.MD5 No documentation available.
BoolList :: [Bool] -> BoolListMissingH Data.Hash.MD5 No documentation available.
-
MissingH Data.Hash.MD5 No documentation available.
WordList :: ([Word32], Zord64) -> WordListMissingH Data.Hash.MD5 No documentation available.
breakList :: ([a] -> Bool) -> [a] -> ([a], [a])MissingH Data.List.Utils Similar to break, but performs the test on the entire remaining list instead of just one element.
dropWhileList :: ([a] -> Bool) -> [a] -> [a]MissingH Data.List.Utils Similar to dropWhile, drops elements while the func is true. The function is given the remainder of the list to examine.
-
MissingH Data.List.Utils Forces the evaluation of the entire list.
spanList :: ([a] -> Bool) -> [a] -> ([a], [a])MissingH Data.List.Utils Similar to span, but performs the test on the entire remaining list instead of just one element. spanList p xs is the same as (takeWhileList p xs, dropWhileList p xs)
takeWhileList :: ([a] -> Bool) -> [a] -> [a]MissingH Data.List.Utils Similar to takeWhile, takes elements while the func is true. The function is given the remainder of the list to examine.