Trait competitive_library::structure::fenwick_tree::Monoid[][src]

pub trait Monoid {
    type T: Clone;
    fn identity_element() -> Self::T;
fn binary_operation(a: &Self::T, b: &Self::T) -> Self::T; }

Associated Types

Required methods

Implementors