| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Scrappy.Types
Documentation
mapMaybe :: forall a b s u (m :: Type -> Type). (a -> Maybe b) -> ParsecT s u m a -> ParsecT s u m b Source #
data ScrapeFail Source #
Instances
| Show ScrapeFail Source # | |
Defined in Scrappy.Types Methods showsPrec :: Int -> ScrapeFail -> ShowS # show :: ScrapeFail -> String # showList :: [ScrapeFail] -> ShowS # | |
Note: both elemParser and treeElemParser are capable of doing greedy or non-greedy matching treeElemParser (unless its really slow) should be better for non-greedy/focused elemParser should be better for greedy
data Processor a b = Processor ThreadId { runFunc :: (a -> b) }