packages feed

parsek 1.0.0 → 1.0.1

raw patch · 2 files changed

+2/−3 lines, 2 files

Files

Text/ParserCombinators/Class.hs view
@@ -8,12 +8,11 @@  -- | Parser class class (Monad p, Alternative p) => IsParser p where-  type SymbolOf p -- ^ Type of symbols processed+  type SymbolOf p -- Type of symbols processed   satisfy :: (SymbolOf p -> Bool) -> p (SymbolOf p) -- ^ accept a symbol satisfying a given predicate   look :: p [SymbolOf p] -- ^ access the stream of symbols from the current point   label :: String -> p a -> p a -- ^ label the parser   (<<|>) :: p a -> p a -> p a -- ^ Left-biased choice.-    ------------------------------------------------------------------------- -- derived parsers
parsek.cabal view
@@ -1,5 +1,5 @@ name:           parsek-version:        1.0.0+version:        1.0.1 category:       Parsing synopsis:       Parallel Parsing Processes description: Koen Claessen's PPP, Modified.