pub trait RLCableValue<F> {
    // Required methods
    fn rlc_value(&self, r: F) -> F;
    fn rlc_value_rev(&self, r: F) -> F;
}
Expand description

Trait around RLC

Required Methods§

source

fn rlc_value(&self, r: F) -> F

Returns the RLC of itself

source

fn rlc_value_rev(&self, r: F) -> F

Returns the RLC of the reverse of itself

Implementations on Foreign Types§

source§

impl<F: Field> RLCableValue<F> for Vec<u8>

source§

fn rlc_value(&self, r: F) -> F

source§

fn rlc_value_rev(&self, r: F) -> F

source§

impl<F: Field> RLCableValue<F> for [u8]

source§

fn rlc_value(&self, r: F) -> F

source§

fn rlc_value_rev(&self, r: F) -> F

Implementors§