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 bindings for symbolic convergence operations.
//!
//! This module provides foreign function interface (FFI) bindings for symbolic
//! convergence-related operations, allowing them to be called from other
//! languages. It includes APIs for bincode serialization, handle-based
//! operations, and JSON serialization.

/// Bincode-based FFI bindings for symbolic convergence operations.
pub mod bincode_api;
/// Handle-based FFI bindings exposing opaque convergence-related `Expr` handles.
pub mod handle;
/// JSON-based FFI bindings for symbolic convergence operations.
pub mod json;