pub trait RLCChainable<F> {
    // Required method
    fn rlc_chain(&self, other: Expression<F>) -> Expression<F>;
}
Expand description

Trait around RLC

Required Methods§

source

fn rlc_chain(&self, other: Expression<F>) -> Expression<F>

Returns the RLC of itself with a starting rlc/multiplier

Implementations on Foreign Types§

source§

impl<F: Field> RLCChainable<F> for (Expression<F>, Expression<F>)

source§

fn rlc_chain(&self, other: Expression<F>) -> Expression<F>

Implementors§