Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. xrr_oi_subpixel_order :: XRROutputInfo -> !SubpixelOrder

    X11 Graphics.X11.Xrandr

    No documentation available.

  2. isBytePrefixOf :: Word8 -> Bytes -> Bool

    byteslice Data.Bytes

    Does the byte sequence begin with the given byte? False if the byte sequence is empty.

  3. isByteSuffixOf :: Word8 -> Bytes -> Bool

    byteslice Data.Bytes

    Does the byte sequence end with the given byte? False if the byte sequence is empty.

  4. isInfixOf :: Bytes -> Bytes -> Bool

    byteslice Data.Bytes

    Is the first argument an infix of the second argument? Uses the Rabin-Karp algorithm: expected time O(n+m), worst-case O(nm).

  5. isPrefixOf :: Bytes -> Bytes -> Bool

    byteslice Data.Bytes

    Is the first argument a prefix of the second argument?

  6. isSuffixOf :: Bytes -> Bytes -> Bool

    byteslice Data.Bytes

    Is the first argument a suffix of the second argument?

  7. longestCommonPrefix :: Bytes -> Bytes -> Bytes

    byteslice Data.Bytes

    Find the longest string which is a prefix of both arguments.

  8. stripCStringPrefix :: CString -> Bytes -> Maybe Bytes

    byteslice Data.Bytes

    O(n) Variant of stripPrefix that takes a NUL-terminated C String as the prefix to test for.

  9. stripOptionalPrefix :: Bytes -> Bytes -> Bytes

    byteslice Data.Bytes

    O(n) Return the suffix of the second string if its prefix matches the entire first string. Otherwise, return the second string unchanged.

  10. stripOptionalSuffix :: Bytes -> Bytes -> Bytes

    byteslice Data.Bytes

    O(n) Return the prefix of the second string if its suffix matches the entire first string. Otherwise, return the second string unchanged.

Page 246 of many | Previous | Next