We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaebc3b + 1d78e30 commit d19f312Copy full SHA for d19f312
src/Text/Parsing/Parser/String.purs
@@ -71,5 +71,6 @@ oneOf :: forall s m a. (Monad m) => Array Char -> ParserT String m Char
71
oneOf ss = satisfy (flip elem ss)
72
73
-- | Match any character not in the array.
74
-noneOf :: forall s m a. (Monad m) => Array Char -> ParserT String m Char
+noneOf :: forall m. (Monad m) => Array Char -> ParserT String m Char
75
noneOf ss = satisfy (flip notElem ss)
76
+
0 commit comments