Uses of Class
at.jku.ssw.fp.sect05_3.parser.Result
-
Packages that use Result Package Description at.jku.ssw.fp.sect05_3.parser -
-
Uses of Result in at.jku.ssw.fp.sect05_3.parser
Methods in at.jku.ssw.fp.sect05_3.parser that return Result Modifier and Type Method Description static <T> Result<T>
Result. failure(Exception excpt, FList<String> rest)
Creates a failed result consisting of an exception and the rest of the input.Result<Expr>
ExprParser. parse(FList<String> tokens)
Applies the expression parser on a list of tokens.Result<Expr>
ExprParser. parse(String input)
Applies the expression parser on an input string.static <T> Result<T>
Result. success(T result, FList<String> rest)
Creates a successful result consisting of a parse result and the rest of the input.
-