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