Type Alias PlonkishWitness
Source pub type PlonkishWitness<const N_COL: usize, const N_FSEL: usize, F> = PlonkishWitnessGeneric<N_COL, N_FSEL, F, Evaluations<F, Radix2EvaluationDomain<F>>>;
pub struct PlonkishWitness<const N_COL: usize, const N_FSEL: usize, F> {
pub witness: Witness<N_COL, Evaluations<F, Radix2EvaluationDomain<F>>>,
pub fixed_selectors: Witness<N_FSEL, Evaluations<F, Radix2EvaluationDomain<F>>>,
pub phantom: PhantomData<F>,
}
The returned type after indexing.
Performs the indexing (
container[index]
) operation.
Read more