flatparse 0.5.6.0 → 0.5.6.1
raw patch · 3 files changed
+3/−3 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ FlatParse.Basic: withAnyChar# :: forall (st :: ZeroBitType) e a. (Char# -> ParserT st e a) -> ParserT st e a
+ FlatParse.Stateful: withAnyChar# :: forall (st :: ZeroBitType) r e a. (Char# -> ParserT st r e a) -> ParserT st r e a
Files
- flatparse.cabal +1/−1
- src/FlatParse/Basic.hs +1/−1
- src/FlatParse/Stateful.hs +1/−1
flatparse.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: flatparse-version: 0.5.6.0+version: 0.5.6.1 synopsis: High-performance parsing from strict bytestrings description: @Flatparse@ is a high-performance parsing library for strict bytestring input. See the README for more information: <https://github.com/AndrasKovacs/flatparse>.
src/FlatParse/Basic.hs view
@@ -122,7 +122,7 @@ -- ** Text -- *** UTF-8 , FP.Text.char, FP.Text.string- , FP.Text.anyChar, FP.Text.skipAnyChar+ , FP.Text.anyChar, FP.Text.withAnyChar#, FP.Text.skipAnyChar , FP.Text.satisfy, FP.Text.skipSatisfy , FP.Text.fusedSatisfy, FP.Text.skipFusedSatisfy , FP.Text.takeLine
src/FlatParse/Stateful.hs view
@@ -131,7 +131,7 @@ -- ** Text -- *** UTF-8 , FP.Text.char, FP.Text.string- , FP.Text.anyChar, FP.Text.skipAnyChar+ , FP.Text.anyChar, FP.Text.withAnyChar#, FP.Text.skipAnyChar , FP.Text.satisfy, FP.Text.skipSatisfy , FP.Text.fusedSatisfy, FP.Text.skipFusedSatisfy , FP.Text.takeLine