pub trait Commutative<N>: Operation<N> { }Expand description
A marker trait that specifies that an Operation is commutative, that is:
combine(a, b) = combine(b, a).
pub trait Commutative<N>: Operation<N> { }A marker trait that specifies that an Operation is commutative, that is:
combine(a, b) = combine(b, a).