pub trait FieldArrayBigUintHelpers<F: PrimeField, const N: usize> {
    // Required method
    fn to_limbs(&self) -> [BigUint; N];

    // Provided method
    fn to_biguints(&self) -> [BigUint; N] { ... }
}
Expand description

PrimeField array BigUint helpers

Required Methods§

source

fn to_limbs(&self) -> [BigUint; N]

Convert limbs from field elements to BigUint

Provided Methods§

source

fn to_biguints(&self) -> [BigUint; N]

Alias for to_limbs

Implementations on Foreign Types§

source§

impl<F: PrimeField, const N: usize> FieldArrayBigUintHelpers<F, N> for [F; N]

source§

fn to_limbs(&self) -> [BigUint; N]

Implementors§