Skip to content

Commit

Permalink
.equals parameters are optional and nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
vhf committed Jan 24, 2019
1 parent b0ce7a6 commit 02bddc8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions interface-spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h3><dfn>Term</dfn> interface</h3>
interface Term {
attribute string termType;
attribute string value;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand Down Expand Up @@ -168,7 +168,7 @@ <h3><dfn>NamedNode</dfn> interface</h3>
interface NamedNode : Term {
attribute string termType;
attribute string value;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand All @@ -193,7 +193,7 @@ <h3><dfn>BlankNode</dfn> interface</h3>
interface BlankNode : Term {
attribute string termType;
attribute string value;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand Down Expand Up @@ -222,7 +222,7 @@ <h3><dfn>Literal</dfn> interface</h3>
attribute string value;
attribute string language;
attribute NamedNode datatype;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand Down Expand Up @@ -263,7 +263,7 @@ <h3><dfn>Variable</dfn> interface</h3>
interface Variable : Term {
attribute string termType;
attribute string value;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand All @@ -289,7 +289,7 @@ <h3><dfn>DefaultGraph</dfn> interface</h3>
interface DefaultGraph : Term {
attribute string termType;
attribute string value;
boolean equals(Term other);
boolean equals(optional Term? other);
};
</pre>

Expand Down Expand Up @@ -333,7 +333,7 @@ <h3><dfn>Quad</dfn> interface</h3>
attribute Term predicate;
attribute Term object;
attribute Term graph;
boolean equals(Quad other);
boolean equals(optional Quad? other);
};
</pre>

Expand Down

0 comments on commit 02bddc8

Please sign in to comment.