pub trait WordExpr<F> {
    // Required method
    fn to_word(&self) -> WordLoHi<Expression<F>>;
}
Expand description

Get the word expression

Required Methods§

source

fn to_word(&self) -> WordLoHi<Expression<F>>

Get the word expression

Implementors§

source§

impl<F: Field, T: Expr<F> + Clone> WordExpr<F> for WordLoHi<T>

source§

impl<F: Field, const N1: usize> WordExpr<F> for WordLimbs<Expression<F>, N1>

source§

impl<F: Field, const N: usize> WordExpr<F> for WordLimbs<Cell<F>, N>

source§

impl<F: Field, const N_LIMBS: usize> WordExpr<F> for IntDecomposition<F, N_LIMBS>