Trait leo_asg::reducer::Monoid[][src]

pub trait Monoid: Default {
    fn append(self, other: Self) -> Self;

    fn append_all(self, others: impl Iterator<Item = Self>) -> Self { ... }
fn append_option(self, other: Option<Self>) -> Self { ... } }

Required methods

Provided methods

Implementors