pub trait FoldFunction: Send + Sync { // Required method fn fold(&self, accumulator: Vec<u8>, value: Vec<u8>) -> Vec<u8> ⓘ; }
Function for folding elements with an accumulator.
Fold a value into the accumulator.