replace-megaparsec-1.5.0.1: Find, replace, split string patterns with Megaparsec parsers (instead of regex)
Copyright©2019 James Brock
LicenseBSD2
MaintainerJames Brock <jamesbrock@gmail.com>
Safe HaskellSafe-Inferred
LanguageHaskell2010

Replace.Megaparsec.Internal.ByteString

Description

This internal module is for ByteString specializations.

The functions in this module are intended to be chosen automatically by rewrite rules in the Replace.Megaparsec module, so you should never need to import this module.

Names in this module may change without a major version increment.

Synopsis

Parser combinator

sepCapByteString Source #

Arguments

:: forall e s m a. (MonadParsec e s m, s ~ ByteString) 
=> m a

The pattern matching parser sep

-> m [Either (Tokens s) a] 

anyTillByteString Source #

Arguments

:: forall e s m a. (MonadParsec e s m, s ~ ByteString) 
=> m a

The pattern matching parser sep

-> m (Tokens s, a)