pub trait Li4<T> {
// Required method
fn li4(&self) -> T;
}
Expand description
Provides the 4-th order polylogarithm function li4() of a
number of type T.
Returns the fourth order polylogarithm of a real number of type f64.
use polylog::Li4;
let x = 1.0;
println!("Li4({}) = {}", x, x.li4());
Returns the fourth order polylogarithm of a complex number of type
Complex<f64>.
use num::complex::Complex;
use polylog::Li4;
let z = Complex::new(1.0, 1.0);
println!("Li4({}) = {}", z, z.li4());