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§
Provided Methods§
sourcefn to_biguints(&self) -> [BigUint; N]
fn to_biguints(&self) -> [BigUint; N]
Alias for to_limbs