1个不稳定版本
0.1.0 | 2020年8月28日 |
---|
#6 in #mathematica
用于 wll
9KB
187 行
wll-rs
Wolfram LibraryLink 接口,适用于Rust
受wll-interface启发。
目的
// lib.rs
use wll::{ErrorKind, Result};
#[wll::setup]
fn setup() {}
#[wll::teardown]
fn teardown() {}
// export function named `wll_add_two`
#[wll::export]
fn add_two(a: isize, b: isize)->Result<isize> {
a.checked_add(b)
.ok_or_else(|| ErrorKind::NumericalError.into())
}
#[wll::export(factorial)]
fn fac(n: usize) -> Result<usize> {
Ok(if n == 0 { 1 } else { n * fac(n - 1)? })
}
lib.rs
:
wll
的过程宏。
依赖项
~1.5MB
~35K SLoC