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.

  1. update_crc_list :: Word32 -> [Char] -> Word32

    MissingH Data.Hash.CRC32.GZip

    No documentation available.

  2. newtype BoolList

    MissingH Data.Hash.MD5

    No documentation available.

  3. BoolList :: [Bool] -> BoolList

    MissingH Data.Hash.MD5

    No documentation available.

  4. newtype WordList

    MissingH Data.Hash.MD5

    No documentation available.

  5. WordList :: ([Word32], Zord64) -> WordList

    MissingH Data.Hash.MD5

    No documentation available.

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

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

  8. seqList :: [a] -> [a]

    MissingH Data.List.Utils

    Forces the evaluation of the entire list.

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

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

Page 99 of many | Previous | Next