pub trait RLCable<F: Field> {
    // Required methods
    fn rlc(&self, r: &Expression<F>) -> Expression<F>;
    fn rlc_rev(&self, r: &Expression<F>) -> Expression<F>;
}
Expand description

Trait around RLC

Required Methods§

source

fn rlc(&self, r: &Expression<F>) -> Expression<F>

Returns the RLC of itself

source

fn rlc_rev(&self, r: &Expression<F>) -> Expression<F>

Returns the RLC of the reverse of itself

Implementors§

source§

impl<F: Field, E: ExprVec<F> + ?Sized> RLCable<F> for E