You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,9 @@ <h2>Design elements and principles</h2>
99
99
<li>Instances of the interfaces created with different libraries should be interoperable.</li>
100
100
<li>Interfaces do <em>not</em> specify how instances are stored in memory.</li>
101
101
<li>Interfaces mandate specific pre-defined methods such as <code>.equals()</code>.</li>
102
+
<li>
103
+
Interfaces are not expected to expose internal objects or return the same object from sucessive calls. Callers shoud use the `Term.equals()` function instead of `===` or `==` to test for equivalence.
104
+
</li>
102
105
<li>
103
106
Factory functions (e.g., <code>quad()</code>) or methods (e.g.,
0 commit comments