Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. indexMaybe :: ShortByteString -> Int -> Maybe Word8

    os-string System.OsString.Data.ByteString.Short

    O(1) ShortByteString index, starting from 0, that returns Just if:

    0 <= n < length bs
    

  2. indexMaybe :: ShortByteString -> Int -> Maybe Word16

    os-string System.OsString.Data.ByteString.Short.Word16

    O(1) ShortByteString index, starting from 0, that returns Just if:

    0 <= n < length bs
    

  3. indexMaybe :: OsString -> Int -> Maybe OsChar

    os-string System.OsString.Internal

    O(1) OsString index, starting from 0, that returns Just if:

    0 <= n < length bs
    

  4. indexMaybe :: PosixString -> Int -> Maybe PosixChar

    os-string System.OsString.Posix

    O(1) OsString index, starting from 0, that returns Just if:

    0 <= n < length bs
    

  5. indexMaybe :: WindowsString -> Int -> Maybe WindowsChar

    os-string System.OsString.Windows

    O(1) OsString index, starting from 0, that returns Just if:

    0 <= n < length bs
    

  6. catMaybes :: [Maybe a] -> [a]

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  7. fromMaybe :: a -> Maybe a -> a

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  8. listToMaybe :: [a] -> Maybe a

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  9. mapMaybe :: (a -> Maybe b) -> [a] -> [b]

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  10. readMaybe :: Read a => String -> Maybe a

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

Page 163 of many | Previous | Next