Trait competitive_library::structure::segment_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;
}