peroxide::numerical::integral

Trait GLKIntegrable

Source
pub trait GLKIntegrable:
    Add<Self, Output = Self>
    + Mul<f64, Output = Self>
    + Sized {
    const ZERO: Self;
}
Expand description

Type that can be integrated using Gauss Legendre or Kronrod Quadrature

Required Associated Constants§

Source

const ZERO: Self

The neutral element of addition.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl GLKIntegrable for f64

Source§

const ZERO: Self = 0f64

Implementors§

Source§

impl GLKIntegrable for C64

Source§

const ZERO: Self = C64::ZERO