vty-5.16: A simple terminal UI library

Safe HaskellSafe
LanguageHaskell2010

Graphics.Vty.Input.Classify.Parse

Description

This module provides a simple parser for parsing input event control sequences.

Synopsis

Documentation

runParser :: String -> Parser Event -> KClass Source #

Run a parser on a given input string. If the parser fails, return Invalid. Otherwise return the valid event (Valid) and the remaining unparsed characters.

failParse :: Parser a Source #

Fail a parsing operation.

readInt :: Parser Int Source #

Read an integer from the input stream. If an integer cannot be read, fail parsing. E.g. calling readInt on an input of "123abc" will return '123' and consume those characters.

readChar :: Parser Char Source #

Read a character from the input stream. If one cannot be read (e.g. we are out of characters), fail parsing.

expectChar :: Char -> Parser () Source #

Read a character from the input stream and fail parsing if it is not the specified character.