@hackage ParserFunction0.0.4

Utilities for parsing and evaluating string-expressions.

ParserFunction provides utilities for parsing and evaluating string-expressions. The centerpiece of this module is a function called evalStrExpr, which evaluates a string-expression using a variable lookup map. Example: evalStrExpr "exp(x)" [('x',1)] gives 2.718281828459045. More examples can be found by viewing the source code for this module. This module also exports all supporting functionality.