wll 0.1.1

A Wolfram LibraryLink interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use wll::{Complex, Result};

#[wll::setup]
fn setup() {}

#[wll::teardown]
fn teardown() {}

#[wll::export(conj)]
fn cconj(z: Complex<i64>) -> Result<Complex<i64>> {
    Ok(z.conj())
}

fn main() {}