Trait polylog::Li6

source ·
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.

Required Methods§

source

fn li6(&self) -> T

Implementations on Foreign Types§

source§

impl Li6<Complex<f64>> for Complex<f64>

source§

fn li6(&self) -> Complex<f64>

Returns the sixths order polylogarithm of a complex number of type Complex<f64>.

Example:
use num::complex::Complex;
use polylog::Li6;

let z = Complex::new(1.0, 1.0);
println!("Li6({}) = {}", z, z.li6());

Implementors§