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

Trait around RLC

Required Methods§

source

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

Returns the RLC of itself with a starting rlc/multiplier

Implementations on Foreign Types§

source§

impl<F: Field> RLCChainableRev<F> for Expression<F>

source§

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

Implementors§