pub trait PrefixOp<T> {
    fn operation(t: T, t: T) -> T;
}
Expand description

Fenwick tree prefix operator

Required Methods

Implementors