Struct wigner_3nj_symbols::Wigner3nj2nd[][src]

pub struct Wigner3nj2nd {
    pub js: Vec<u128>,
    pub ls: Vec<u128>,
    pub ks: Vec<u128>,
}
Expand description

Wigner 3n-j Symobols of the second kind

Examples

use wigner_3nj_symbols::Wigner3nj2nd;

let w = Wigner3nj2nd {
    js: vec!(1,1,1),
    ls: vec!(2,2,2),
    ks: vec!(1,1,1)
};

assert_eq!(w.value(), 0.1111111111111111)

Fields

js: Vec<u128>ls: Vec<u128>ks: Vec<u128>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.