binius_field::arithmetic_traits

Trait TaggedMulAlpha

Source
pub trait TaggedMulAlpha<Strategy> {
    // Required method
    fn mul_alpha(self) -> Self;
}
Expand description

Multiply by alpha operation that is parameterized with some some strategy.

Required Methods§

Source

fn mul_alpha(self) -> Self

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§

Source§

impl<P> TaggedMulAlpha<HybridRecursiveStrategy> for P
where P: PackedTowerField, P::Scalar: TowerExtensionField<DirectSubfield = P::DirectSubfield>, P::PackedDirectSubfield: MulAlpha,

Source§

impl<P> TaggedMulAlpha<PairwiseRecursiveStrategy> for P
where P: PackedField, P::Scalar: TowerExtensionField<DirectSubfield: MulAlpha>,

Source§

impl<PT> TaggedMulAlpha<PackedStrategy> for PT
where PT: PackedTowerField, PT::PackedDirectSubfield: MulAlpha, PT::Underlier: UnderlierWithBitConstants,

Source§

impl<PT: PackedField + MulAlpha> TaggedMulAlpha<PairwiseStrategy> for PT
where PT::Scalar: MulAlpha,

Source§

impl<T> TaggedMulAlpha<ReuseMultiplyStrategy> for T
where T: Mul<Self, Output = Self> + Alpha,