Flexible Arithmetic Parser

Build Status License: Apache-2.0 rust 1.42.0+ required

Documentation: crate docs (master)

A versatile parser for arithmetic expressions which allows customizing literal definitions, type annotations and several other aspects of parsing.

Supported Features

The parser supports both complete and streaming (incomplete) modes; the latter is useful for REPLs and similar applications.

Optional Features

These features can be switched on or off when defining a grammar.

Code Sample

Here is an example of code parsed with the grammar with real-valued literals and the only supported type Num:

```text

This is a comment.

x = 1 + 2.5 * 3 + sin(a^3 / b^2);

Function declarations have syntax similar to Rust closures.

somefunction = |a, b: Num| (a + b, a - b); otherfunction = |x| { r = min(rand(), 0.5); r * x };

Tuples and blocks are supported and have a similar syntax to Rust.

(y, z: Num) = somefunction({ x = x - 0.5; x }, x); otherfunction(y - z) ```

Implementation Details

The parser is based on the nom crate. The core trait of the library, Grammar, is designed in such a way that switching optional features should not induce run-time overhead; the unused parsing code paths should be removed during compilation.

License

Licensed under the Apache-2.0 license.