pub trait OrderedMonoid: Monoid {
    // Required methods
    fn lt(left: &Self::Val, right: &Self::Val) -> bool;
    fn le(left: &Self::Val, right: &Self::Val) -> bool;
}
Expand description

順序付きモノイド

Required Methods§

source

fn lt(left: &Self::Val, right: &Self::Val) -> bool

source

fn le(left: &Self::Val, right: &Self::Val) -> bool

Implementors§