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
//! FFI bindings for symbolic finite field operations.
//!
//! This module exposes foreign function interface (FFI) bindings for arithmetic
//! and algebraic structures over finite fields, enabling them to be used from
//! other languages.

/// Bincode-based FFI bindings for symbolic finite field operations.
pub mod bincode_api;
/// Handle-based FFI bindings for finite fields using opaque handles to field elements and structures.
pub mod handle;
/// JSON-based FFI bindings for finite field operations using serialized values.
pub mod json;