The “identity (left)” law is listed as
return a >>= m = m s
but should probably be
return a >>= m = m a
Otherwise the s
is left unexplained.
The “identity (left)” law is listed as
return a >>= m = m s
but should probably be
return a >>= m = m a
Otherwise the s
is left unexplained.