#wolfram-language #wolfram #expression #wolfram-engine #mathematica #link

wolfram-expr

Efficient and ergonomic representation of Wolfram expressions in Rust

5 releases

0.1.4 Feb 3, 2023
0.1.3 Dec 6, 2022
0.1.2 Jul 26, 2022
0.1.1 Feb 19, 2022
0.1.0 Feb 8, 2022

#470 in Encoding

Download history 26/week @ 2023-12-18 18/week @ 2023-12-25 20/week @ 2024-01-01 38/week @ 2024-01-08 41/week @ 2024-01-15 8/week @ 2024-01-22 33/week @ 2024-01-29 31/week @ 2024-02-05 43/week @ 2024-02-12 49/week @ 2024-02-19 63/week @ 2024-02-26 65/week @ 2024-03-04 33/week @ 2024-03-11 40/week @ 2024-03-18 45/week @ 2024-03-25 125/week @ 2024-04-01

252 downloads per month
Used in 7 crates (5 directly)

MIT/Apache

48KB
740 lines

wolfram-expr

Crates.io License Documentation

API Documentation | Changelog | Contributing

Efficient and ergonomic representation of Wolfram expressions in Rust.

Examples

Construct the expression {1, 2, 3}:

use wolfram_expr::{Expr, Symbol};

let expr = Expr::normal(Symbol::new("System`List"), vec![
    Expr::from(1),
    Expr::from(2),
    Expr::from(3)
]);

Pattern match over different expression variants:

use wolfram_expr::{Expr, ExprKind};

let expr = Expr::from("some arbitrary expression");

match expr.kind() {
    ExprKind::Integer(1) => println!("got 1"),
    ExprKind::Integer(n) => println!("got {}", n),
    ExprKind::Real(_) => println!("got a real number"),
    ExprKind::String(s) => println!("got string: {}", s),
    ExprKind::Symbol(sym) => println!("got symbol named {}", sym.symbol_name()),
    ExprKind::Normal(e) => println!(
        "got expr with head {} and length {}",
        e.head(),
        e.elements().len()
    ),
}
  • wolfram-library-link — author libraries that can be dynamically loaded by the Wolfram Language.
  • wstp — bindings to the Wolfram Symbolic Transport Protocol, used for passing arbitrary Wolfram expressions between programs.
  • wolfram-app-discovery — utility for locating local installations of Wolfram applications and the Wolfram Language.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

See CONTRIBUTING.md for more information.

Dependencies

~245KB