sophy 0.2.0

A lightweight, efficient mathematical library for numerical methods, functions, and utilities in pure Rust
Documentation
//! # Base Mathematical Operations Module
//!
//! This module provides fundamental mathematical operations, number utilities,
//! and basic computational building blocks used throughout Sophy.
//!
//! ## Available Utilities
//!
//! ### Number Operations
//! - [`numbers`]: Core number manipulation and conversion utilities
//!
//! ## Usage Examples
//!
//! ```rust
//! use sophy::base::numbers;
//!
//! // Example usage (when functions are implemented):
//! // let factorial = numbers::factorial(5);
//! // let gcd = numbers::gcd(48, 18);
//! ```
//!
//! ## Future Additions
//!
//! Planned utilities include:
//! - Prime number operations
//! - Greatest Common Divisor (GCD) and Least Common Multiple (LCM)
//! - Factorization algorithms
//! - Base conversion utilities
//! - Modular arithmetic operations

pub mod numbers;