summary refs log tree commit diff
path: root/src/libcore/bessel.rs
blob: 721df01690307eaf3c2d87621993c4292f6a3607 (plain)
1
2
3
4
5
6
7
8
9
10
// PORT import module that is based on cmath::c_double here
// (cant do better via libm; bessel functions only exist for c_double)

// code that wants to use bessel functions should use
// values of type bessel::t and cast from/to float/f32/f64
// when working with them at the peril of precision loss
// for platform neutrality

import f64::*;