Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. spanMaybe :: TextualMonoid t => s -> (s -> t -> Maybe s) -> (s -> Char -> Maybe s) -> t -> (t, t, s)

    monoid-subclasses Data.Monoid.Textual

    A stateful variant of span, threading the result of the test function as long as it returns Just.

  2. spanMaybe' :: TextualMonoid t => s -> (s -> t -> Maybe s) -> (s -> Char -> Maybe s) -> t -> (t, t, s)

    monoid-subclasses Data.Monoid.Textual

    Strict version of spanMaybe.

  3. spanMaybe_ :: TextualMonoid t => s -> (s -> Char -> Maybe s) -> t -> (t, t, s)

    monoid-subclasses Data.Monoid.Textual

    spanMaybe_ s = spanMaybe s (const . Just)
    

  4. spanMaybe_' :: TextualMonoid t => s -> (s -> Char -> Maybe s) -> t -> (t, t, s)

    monoid-subclasses Data.Monoid.Textual

    No documentation available.

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

    os-string System.OsString

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

    0 <= n < length bs
    

  6. 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
    

  7. 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
    

  8. 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
    

  9. 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
    

  10. 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
    

Page 167 of many | Previous | Next