The Setoid type defines equality.
Setoid
Instances must obey the following laws:
S.equals(a, a) === true
S.equals(a, b) === S.equals(b, a)
S.equals(a, b)
S.equals(b, c)
S.equals(a, c)
Equivalent with the Setoid specification in the static-land spec.
Generated using TypeDoc
The
Setoid
type defines equality.Instances must obey the following laws:
S.equals(a, a) === true
S.equals(a, b) === S.equals(b, a)
S.equals(a, b)
andS.equals(b, c)
, thenS.equals(a, c)
Equivalent with the
Setoid
specification in the static-land spec.