| Safe Haskell | None | 
|---|---|
| Language | Haskell2010 | 
Distribution.Parsec.FieldLineStream
Documentation
data FieldLineStream #
This is essentially a lazy bytestring, but chunks are glued with newline '\n'.
Constructors
| FLSLast !ByteString | |
| FLSCons !ByteString FieldLineStream | 
Instances
| Show FieldLineStream # | |
| Defined in Distribution.Parsec.FieldLineStream Methods showsPrec :: Int -> FieldLineStream -> ShowS # show :: FieldLineStream -> String # showList :: [FieldLineStream] -> ShowS # | |
| Monad m => Stream FieldLineStream m Char # | |
| Defined in Distribution.Parsec.FieldLineStream Methods uncons :: FieldLineStream -> m (Maybe (Char, FieldLineStream)) # | |
fieldLineStreamFromString :: String -> FieldLineStream #
Convert String to FieldLineStream.
Note: inefficient!