use std::ffi::CString;
use wolfram_library_link::{
self as wll,
sys::{mint, mreal},
NumericArray, UninitNumericArray,
};
#[wll::export]
fn test_no_args() -> i64 {
4
}
#[wll::export]
fn test_ret_void() {
}
#[wll::export]
fn test_mint(x: mint) -> mint {
x * x
}
#[wll::export]
fn test_raw_mint(args: &[wll::sys::MArgument], ret: wll::sys::MArgument) {
if args.len() != 1 {
panic!("unexpected number of arguments");
}
let x: mint = unsafe { *args[0].integer };
unsafe {
*ret.integer = x * x;
}
}
#[wll::export]
fn test_mint_mint(x: mint, y: mint) -> mint {
x + y
}
#[wll::export]
fn test_mreal(x: mreal) -> mreal {
x * x
}
#[wll::export]
fn test_i64(x: i64) -> i64 {
x * x
}
#[wll::export]
fn test_i64_i64(x: i64, y: i64) -> i64 {
x + y
}
#[wll::export]
fn test_f64(x: f64) -> f64 {
x * x
}
#[wll::export]
fn test_string(string: String) -> String {
string.chars().rev().collect()
}
#[wll::export]
fn test_c_string(string: CString) -> i64 {
i64::try_from(string.as_bytes().len()).expect("string len usize overflows i64")
}
#[wll::export]
fn test_panic() {
panic!("this function panicked");
}
#[wll::export]
fn total_i64(list: &NumericArray<i64>) -> i64 {
list.as_slice().into_iter().sum()
}
#[wll::export]
fn positive_i64(list: &NumericArray<i64>) -> NumericArray<u8> {
let mut bools: UninitNumericArray<u8> =
UninitNumericArray::from_dimensions(list.dimensions());
for pair in list.as_slice().into_iter().zip(bools.as_slice_mut()) {
let (elem, entry): (&i64, &mut std::mem::MaybeUninit<u8>) = pair;
entry.write(u8::from(elem.is_positive()));
}
unsafe { bools.assume_init() }
}