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).

Implementors§