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.
xrr_oi_subpixel_order :: XRROutputInfo -> !SubpixelOrderX11 Graphics.X11.Xrandr No documentation available.
isBytePrefixOf :: Word8 -> Bytes -> Boolbyteslice Data.Bytes Does the byte sequence begin with the given byte? False if the byte sequence is empty.
isByteSuffixOf :: Word8 -> Bytes -> Boolbyteslice Data.Bytes Does the byte sequence end with the given byte? False if the byte sequence is empty.
isInfixOf :: Bytes -> Bytes -> Boolbyteslice 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).
isPrefixOf :: Bytes -> Bytes -> Boolbyteslice Data.Bytes Is the first argument a prefix of the second argument?
isSuffixOf :: Bytes -> Bytes -> Boolbyteslice Data.Bytes Is the first argument a suffix of the second argument?
longestCommonPrefix :: Bytes -> Bytes -> Bytesbyteslice Data.Bytes Find the longest string which is a prefix of both arguments.
stripCStringPrefix :: CString -> Bytes -> Maybe Bytesbyteslice Data.Bytes O(n) Variant of stripPrefix that takes a NUL-terminated C String as the prefix to test for.
stripOptionalPrefix :: Bytes -> Bytes -> Bytesbyteslice 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.
stripOptionalSuffix :: Bytes -> Bytes -> Bytesbyteslice 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.