Struct ff::BatchInverter

source ·
pub struct BatchInverter {}
Expand description

A non-allocating batch inverter.

Implementations§

Inverts each field element in elements (when nonzero). Zero-valued elements are left as zero.

  • scratch_space is a slice of field elements that can be freely overwritten.

Returns the inverse of the product of all nonzero field elements.

Panics

This function will panic if elements.len() != scratch_space.len().

Inverts each field element in items (when nonzero). Zero-valued elements are left as zero.

  • element is a function that extracts the element to be inverted from items.
  • scratch_space is a function that extracts the scratch space from items.

Returns the inverse of the product of all nonzero field elements.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.