Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. findFirstInfix :: RE s a -> [s] -> Maybe ([s], a, [s])

    regex-applicative Text.Regex.Applicative

    Find the leftmost substring that is matched by the regular expression. Otherwise behaves like findFirstPrefix. Returns the result together with the prefix and suffix of the string surrounding the match.

  2. findFirstPrefix :: RE s a -> [s] -> Maybe (a, [s])

    regex-applicative Text.Regex.Applicative

    Find a string prefix which is matched by the regular expression. Of all matching prefixes, pick one using left bias (prefer the left part of <|> to the right part) and greediness. This is the match which a backtracking engine (such as Perl's one) would find first. If match is found, the rest of the input is also returned. See also findFirstPrefixWithUncons, of which this is a special case. Examples:

    Text.Regex.Applicative> findFirstPrefix ("a" <|> "ab") "abc"
    Just ("a","bc")
    Text.Regex.Applicative> findFirstPrefix ("ab" <|> "a") "abc"
    Just ("ab","c")
    Text.Regex.Applicative> findFirstPrefix "bc" "abc"
    Nothing
    

  3. findFirstPrefixWithUncons :: (ss -> Maybe (s, ss)) -> RE s a -> ss -> Maybe (a, ss)

    regex-applicative Text.Regex.Applicative

    Find the first prefix, with the given uncons function.

  4. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE

    No documentation available.

  5. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE.ByteString

    No documentation available.

  6. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE.ByteString.Lazy

    No documentation available.

  7. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE.Sequence

    No documentation available.

  8. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE.String

    No documentation available.

  9. compFirstLine :: CompOption

    regex-pcre Text.Regex.PCRE.Wrap

    No documentation available.

  10. iterFirst :: MonadIO m => Iterator -> m ()

    rocksdb-haskell-jprupp Database.RocksDB

    Position at the first key in the source. The iterator is valid after this call iff the source is not empty.

Page 85 of many | Previous | Next