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
//! FFI API for numerical complex analysis operations.
//!
//! This module provides three types of FFI interfaces:
//! - Handle-based API (C-style functions)
//! - JSON-based API (string serialization)
//! - Bincode-based API (binary serialization)

/// bincode-based FFI bindings for numerical complex analysis operations.
pub mod bincode_api;
/// Handle-based FFI bindings for numerical complex analysis using opaque handles.
pub mod handle;
/// JSON-based FFI bindings for numerical complex analysis using serialized data.
pub mod json;