pub fn right_identity<A: Monoid + Eq>(a: A) -> bool
Expand description

Right identity law

x <> mempty = x

§Examples

use frunk_laws::monoid_laws::*;
quickcheck(right_identity as fn(String) -> bool);
Run