Skip to main content

wolfram_export/native/
mod.rs

1//! Runtime support for `#[export]`-marked native (MArgument-based) LibraryLink
2//! functions.
3//!
4//! Most of the actual work lives in [`wolfram-library-link`][::wolfram_library_link]
5//! (the `FromArg` / `IntoArg` / `NativeFunction` trait dispatch over MArgument).
6//! This module just re-exports those pieces under the `wolfram_export::native::*`
7//! namespace so the proc-macro emits clean paths.
8
9pub mod macro_utils;