Crates.io CI

asciimath-rs

Sample use: ```rust

[macro_use] extern crate asciimath;

use asciimath::{eval,CustomFn};

let mysum: CustomFn = |args| Ok(args.iter().sum()); let scope = scope!{ "x" => -1, "mysum" => my_sum, };

asserteq!(Ok(260.0), eval("mysum(1, ((1 - x) ^ 2 ^ 3), 3)", &scope)); ```

Features

High-Level Goals

Ease of use

This means that e.g. passing in variables to expressions and defining custom functions must be possible with minimum knowledge of this library's internals and abstractions. Errors must be helpful and relevant.

Minimalism

Focusing just on mathematical expressions will make it easy for this library to remain slim and deliver superior ergonomics.

Accuracy

Extensive testing and maximum precision must be a part of all the modules to prevent bugs and ensure consistency.

Future

The items below will be considered after ABI stabilization:

Motivation

While some great libraries aiming for similar goals do exist, they wouldn't reward me with such a fruitful Rust learning experience and imo sorely lack ergonomics.

Implementation

The parser is loosely based on Dijkstra's "shunting yard" algorithm for converting infix expressions into postfix expressions. However, instead of going from infix to postfix strings, we parse the expression straight into an Abstract Syntax Tree.