We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359ea86 commit 80283fbCopy full SHA for 80283fb
src/Text/Megaparsec/Utils.hs
@@ -12,17 +12,22 @@
12
--
13
-- Generic utilities and common parsers.
14
module Text.Megaparsec.Utils (
15
+ -- * Scalar parsers
16
boolParser,
- boundedEnumShowParser,
17
- commaSeparated,
18
numParser,
19
- occurrence,
20
- occurrences,
21
- parsecToJSONParser,
22
- parsecToReadsPrec,
23
posDecNumParser,
24
posNumParser,
25
uuidParser,
+
+ -- * Combinators
+ commaSeparated,
+ occurrence,
+ occurrences,
26
27
+ -- * Compatibility utilities
28
+ boundedEnumShowParser,
29
+ parsecToReadsPrec,
30
+ parsecToJSONParser,
31
) where
32
33
import Control.Applicative (many, some, (<|>))
0 commit comments