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. isSuffixOf :: PosixString -> PosixString -> Bool

    os-string System.OsString.Posix

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

    isSuffixOf x y == reverse x `isPrefixOf` reverse y
    

  2. stripPrefix :: PosixString -> PosixString -> Maybe PosixString

    os-string System.OsString.Posix

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

  3. stripSuffix :: PosixString -> PosixString -> Maybe PosixString

    os-string System.OsString.Posix

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

  4. isInfixOf :: WindowsString -> WindowsString -> Bool

    os-string System.OsString.Windows

    Check whether one string is a substring of another.

  5. isPrefixOf :: WindowsString -> WindowsString -> Bool

    os-string System.OsString.Windows

    O(n) The isPrefixOf function takes two OsStrings and returns True

  6. isSuffixOf :: WindowsString -> WindowsString -> Bool

    os-string System.OsString.Windows

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

    isSuffixOf x y == reverse x `isPrefixOf` reverse y
    

  7. stripPrefix :: WindowsString -> WindowsString -> Maybe WindowsString

    os-string System.OsString.Windows

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

  8. stripSuffix :: WindowsString -> WindowsString -> Maybe WindowsString

    os-string System.OsString.Windows

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

  9. linTransFixedPoint :: LinearTransform d -> Double

    statistics Statistics.Distribution.Transform

    Get fixed point of linear transformation

  10. isPrefixOf :: (Storable a, Eq a) => Vector a -> Vector a -> Bool

    storablevector Data.StorableVector

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

Page 143 of many | Previous | Next