pub trait Polynom<T>where
    Self: Poly<T> + Mul<Output = Self> + Copy,
    Self::Q: AddAssign<(Self, T)> + AddAssign<(Self, Self)>,
    T: Copy,
{
Show 20 methods fn poly1(self, c: &[T; 2]) -> Self { ... } fn poly2(self, c: &[T; 3]) -> Self { ... } fn poly3(self, c: &[T; 4]) -> Self { ... } fn poly4(self, c: &[T; 5]) -> Self { ... } fn poly5(self, c: &[T; 6]) -> Self { ... } fn poly6(self, c: &[T; 7]) -> Self { ... } fn poly7(self, c: &[T; 8]) -> Self { ... } fn poly8(self, c: &[T; 9]) -> Self { ... } fn poly9(self, c: &[T; 10]) -> Self { ... } fn poly10(self, c: &[T; 11]) -> Self { ... } fn poly11(self, c: &[T; 12]) -> Self { ... } fn poly12(self, c: &[T; 13]) -> Self { ... } fn poly13(self, c: &[T; 14]) -> Self { ... } fn poly14(self, c: &[T; 15]) -> Self { ... } fn poly15(self, c: &[T; 16]) -> Self { ... } fn poly16(self, c: &[T; 17]) -> Self { ... } fn poly17(self, c: &[T; 18]) -> Self { ... } fn poly18(self, c: &[T; 19]) -> Self { ... } fn poly3a(self, c: &[T; 4]) -> Self { ... } fn poly4a(self, c: &[T; 5]) -> Self { ... }
}

Provided Methods§

Implementors§