Hoogle Search

Within LTS Haskell 24.56 (ghc-9.10.3)

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

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

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

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

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

  5. spanMaybe :: FactorialMonoid m => s -> (s -> m -> Maybe s) -> m -> (m, m, s)

    monoid-subclasses Data.Monoid.Factorial

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

  6. spanMaybe' :: FactorialMonoid m => s -> (s -> m -> Maybe s) -> m -> (m, m, s)

    monoid-subclasses Data.Monoid.Factorial

    Strict version of spanMaybe.

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

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

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

    monoid-subclasses Data.Monoid.Textual

    spanMaybe_ s = spanMaybe s (const . Just)
    

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

    monoid-subclasses Data.Monoid.Textual

    No documentation available.

Page 167 of many | Previous | Next