| Safe Haskell | None |
|---|
Lambdabot.Pointful
- pointful :: String -> String
- data ParseResult a
- = ParseOk a
- | ParseFailed SrcLoc String
- test :: String -> IO ()
- main :: IO ()
- combinatorModule :: String
Documentation
data ParseResult a
The result of a parse.
Constructors
| ParseOk a | The parse succeeded, yielding a value. |
| ParseFailed SrcLoc String | The parse failed at the specified source location, with an error message. |
Instances
| Monad ParseResult | |
| Functor ParseResult | |
| Applicative ParseResult | |
| Show a => Show (ParseResult a) | |
| Monoid m => Monoid (ParseResult m) |