We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b1bd3 commit 49b585fCopy full SHA for 49b585f
.gitignore
@@ -5,5 +5,6 @@
5
!/.jshintrc
6
!/.travis.yml
7
/bower_components/
8
+/generated-docs/
9
/node_modules/
10
/output/
src/Text/Parsing/Parser/Combinators.purs
@@ -17,6 +17,9 @@
17
-- | ```purescript
18
-- | Text.Parsec.many (char 'x') <=> fromCharArray <$> Data.Array.many (char 'x')
19
-- | ```
20
+-- |
21
+-- | Note that `Data.(Array|List).(many|some)` are not stack safe. If you need to parse
22
+-- | large numbers of items then consider using `Data.List.(manyRec|someRec)` instead.
23
24
module Text.Parsing.Parser.Combinators where
25
0 commit comments