Safe Haskell | None |
---|---|
Language | Haskell2010 |
Scanner implementation
Synopsis
- newtype Scanner a = Scanner {
- run :: forall r. ByteString -> Next a r -> Result r
- type Next a r = ByteString -> a -> Result r
- data Result r
- = Done ByteString r
- | Fail ByteString String
- | More (ByteString -> Result r)
- scan :: Scanner r -> ByteString -> Result r
- anyWord8 :: Scanner Word8
- takeWhile :: (Word8 -> Bool) -> Scanner ByteString
- take :: Int -> Scanner ByteString
- endOfInput :: Scanner Bool
- string :: ByteString -> Scanner ()
- lookAhead :: Scanner (Maybe Word8)
- foldlWhile :: (Word8 -> Bool) -> (a -> Word8 -> a) -> a -> Scanner a
- foldlWhile1 :: (Word8 -> Bool) -> (a -> Word8 -> a) -> a -> Scanner a
- satisfy :: (Word8 -> Bool) -> Scanner Word8
- satisfyMaybe :: (Word8 -> Bool) -> Scanner (Maybe Word8)
- decimal :: Integral n => Scanner n
Documentation
CPS scanner without backtracking
Scanner | |
|
type Next a r = ByteString -> a -> Result r Source #
Scanner continuation
Scanner result
Done ByteString r | Successful result with the rest of input |
Fail ByteString String | Scanner failed with rest of input and error message |
More (ByteString -> Result r) | Need more input |
string :: ByteString -> Scanner () Source #
Consume the specified string
Warning: it is not optimized yet, so for for small string it is better
to consume it byte-by-byte using word8
foldlWhile :: (Word8 -> Bool) -> (a -> Word8 -> a) -> a -> Scanner a Source #
Fold over the octets, which satisfy the predicate
foldlWhile1 :: (Word8 -> Bool) -> (a -> Word8 -> a) -> a -> Scanner a Source #
Fold over the octets, which satisfy the predicate, ensuring that there's at least one
satisfy :: (Word8 -> Bool) -> Scanner Word8 Source #
Consume a single octet which satisfies the predicate and fail if it does not