Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Documentation
mkCharIndentStream :: s -> CharIndentStream s Source #
data CharIndentStream s Source #
Instances
Show s => Show (CharIndentStream s) Source # | |
Defined in Text.Parsec.Indentation.Char showsPrec :: Int -> CharIndentStream s -> ShowS # show :: CharIndentStream s -> String # showList :: [CharIndentStream s] -> ShowS # | |
Stream s m Char => Stream (CharIndentStream s) m (Char, Indentation) Source # | |
Defined in Text.Parsec.Indentation.Char uncons :: CharIndentStream s -> m (Maybe ((Char, Indentation), CharIndentStream s)) # |
updateColumn :: Integral a => a -> Char -> a Source #
charIndentStreamParser :: Monad m => ParsecT s u m t -> ParsecT (CharIndentStream s) u m (t, Indentation) Source #