Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. writeTixFile :: HpcFlags -> Bool

    base GHC.RTS.Flags

    Controls whether the program.tix file should be written after the execution of the program.

  2. isInfixOf :: ByteString -> ByteString -> Bool

    bytestring Data.ByteString

    Check whether one string is a substring of another.

  3. isPrefixOf :: ByteString -> ByteString -> Bool

    bytestring Data.ByteString

    O(n) The isPrefixOf function takes two ByteStrings and returns True if the first is a prefix of the second.

  4. isSuffixOf :: ByteString -> ByteString -> Bool

    bytestring Data.ByteString

    O(n) The isSuffixOf function takes two ByteStrings and returns True iff the first is a suffix of the second. The following holds:

    isSuffixOf x y == reverse x `isPrefixOf` reverse y
    
    However, the real implementation uses memcmp to compare the end of the string only, with no reverse required..

  5. stripPrefix :: ByteString -> ByteString -> Maybe ByteString

    bytestring Data.ByteString

    O(n) The stripPrefix function takes two ByteStrings and returns Just the remainder of the second iff the first is its prefix, and otherwise Nothing.

  6. stripSuffix :: ByteString -> ByteString -> Maybe ByteString

    bytestring Data.ByteString

    O(n) The stripSuffix function takes two ByteStrings and returns Just the remainder of the second iff the first is its suffix, and otherwise Nothing.

  7. doubleHexFixed :: Double -> Builder

    bytestring Data.ByteString.Builder

    Encode an IEEE Double using 16 nibbles.

  8. floatHexFixed :: Float -> Builder

    bytestring Data.ByteString.Builder

    Encode an IEEE Float using 8 nibbles.

  9. int16HexFixed :: Int16 -> Builder

    bytestring Data.ByteString.Builder

    Encode a Int16 using 4 nibbles.

  10. int32HexFixed :: Int32 -> Builder

    bytestring Data.ByteString.Builder

    Encode a Int32 using 8 nibbles.

Page 25 of many | Previous | Next