ellip 1.1.0

Elliptic integrals for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Ellip is licensed under The 3-Clause BSD, see LICENSE.
 * Copyright 2025 Sira Pornsiriprasert <code@psira.me>
 */

//! Functions related to elliptic integrals

#[cfg(feature = "unstable")]
pub mod jacobi_zeta;
#[cfg(not(feature = "unstable"))]
mod jacobi_zeta;
pub use jacobi_zeta::jacobi_zeta;
#[cfg(feature = "unstable")]
pub mod heuman_lambda;
#[cfg(not(feature = "unstable"))]
mod heuman_lambda;
pub use heuman_lambda::heuman_lambda;