rssn 0.2.9

A comprehensive scientific computing library for Rust, aiming for feature parity with NumPy and SymPy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # FFI Plugin System
//!
//! The `plugins` module and its submodules are for testing the FFI plugin system.
//!
//! # Usage
//!
//! ```rust
//! use rssn::plugins::manager::PluginManager;

/// Plugin manager for loading and managing plugins.
pub mod manager;
/// C-style plugin interface.
pub mod plugin_c;
/// Stable ABI plugin interface.
pub mod stable_abi;