All instances of PartialEq must satisfy the following conditions:

  • Symmetric: PartialEq<A, B> always equals to PartialEq<B, A>.
  • Transitive: PartialEq<A, B> and PartialEq<B, C> always implies PartialEq<A, C>.

Type Parameters

  • Lhs

  • Rhs = Lhs

Hierarchy

Properties

Properties

eq: ((l, r) => boolean)

Type declaration

    • (l, r): boolean
    • Parameters

      • l: Lhs
      • r: Rhs

      Returns boolean

Generated using TypeDoc