1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! A library to compute Bessel functions
//!
//! # Introduction
//!
//! Rust library that acts as a wrapper for the Fortran subroutines developed by D.E. Amos.
//! The library provides functionality to compute the Bessel, Hankel and Airy functions of complex argument and real order.
//! Negative orders are implemented via the standard formulae.
//!
//! # Dependencies
//!
//! To compile this library is necessary to install gfortran-13
//!
//! # Credits
//!
//! - Joey Dumont and Denis Gagnon, complex_bessel: Release 0.6 (jun / 2015)
//!   [doi 10.5281/zenodo.18220](https://doi.org/10.5281/zenodo.18220)
//!   

pub mod bessel_i;
pub mod bessel_j;
pub mod bessel_k;
pub mod bessel_y;

pub(crate) mod bindings;
pub(crate) mod derivative;