Trait ActionMonoid

Source
pub trait ActionMonoid {
    type M: Monoid;
    type A: Action<Target = <Self::M as Monoid>::Target>;
}
Expand description

自己準同型性を要求
つまり区間和への適用と、各要素への適用の区間和が一致することを要求

Required Associated Types§

Source

type M: Monoid

作用の対象のモノイド

Source

type A: Action<Target = <Self::M as Monoid>::Target>

作用素のモノイド

Implementors§