Skip to content

Commit

Permalink
Merge pull request #19 from rdfjs/merge-to-union
Browse files Browse the repository at this point in the history
renamed merge to union
  • Loading branch information
bergos authored Jan 4, 2019
2 parents 2da4515 + a2e3831 commit 6fff0ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dataset-spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,11 @@ <h3><dfn>Dataset</dfn> interface</h3>
Promise&lt;Dataset&gt; import (Stream stream);
Dataset intersection (Dataset other);
Dataset map (QuadMapIteratee iteratee);
Dataset merge ((Dataset or sequence&lt;Quad&gt;) quads);
boolean some (QuadFilterIteratee iteratee);
String toCanonical ();
Stream toStream ();
String toString ();
Dataset union (Dataset quads);
};
</pre>

Expand Down Expand Up @@ -246,11 +246,6 @@ <h3>Methods</h3>
</p>
<p>Returns a new dataset containing all quads returned by applying <code>iteratee</code> to each quad in the current dataset.</p>

<p>
<dfn>merge</dfn>
</p>
<p>Returns a new <a>Dataset</a> that is a concatenation of this dataset and the <code>quads</code> given as an argument.</p>

<p>
<dfn>some</dfn>
</p>
Expand All @@ -273,6 +268,11 @@ <h3>Methods</h3>
</p>
<p>Returns an N-Quads string representation of the dataset.</p>
<p>No normalization is done before, so the results for the same quads may vary based on the Dataset implementation.</p>

<p>
<dfn>union</dfn>
</p>
<p>Returns a new <a>Dataset</a> that is a concatenation of this dataset and the <code>quads</code> given as an argument.</p>
</section>

<section data-dfn-for="DatasetFactory">
Expand Down

0 comments on commit 6fff0ec

Please sign in to comment.