Trait FF

Source
pub trait FF: ZZ<Element: FFElem> + Clone {
    // Provided method
    fn frac(&self, a: i64, b: i64) -> Self::Element { ... }
}
Expand description

有限体$\mathbb{F}_p$

Provided Methods§

Source

fn frac(&self, a: i64, b: i64) -> Self::Element

a/bを生成する。

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.

Implementors§