[][src]Trait polylog::Li6

pub trait Li6<T> {
    fn li6(&self) -> T;
}

Provides the sixths order polylogarithm function li6() of a number of type T.

Required methods

fn li6(&self) -> T

Loading content...

Implementations on Foreign Types

impl Li6<Complex<f64>> for Complex<f64>[src]

fn li6(&self) -> Complex<f64>[src]

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

Example:

extern crate num;
extern crate polylog;
use num::complex::Complex;
use polylog::Li6;

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

Implementors

Loading content...