diff --git a/dataset-spec.html b/dataset-spec.html index 72084b9..6fa6ba8 100644 --- a/dataset-spec.html +++ b/dataset-spec.html @@ -170,11 +170,11 @@

Dataset interface

Promise<Dataset> import (Stream stream); Dataset intersection (Dataset other); Dataset map (QuadMapIteratee iteratee); - Dataset merge ((Dataset or sequence<Quad>) quads); boolean some (QuadFilterIteratee iteratee); String toCanonical (); Stream toStream (); String toString (); + Dataset union (Dataset quads); }; @@ -246,11 +246,6 @@

Methods

Returns a new dataset containing all quads returned by applying iteratee to each quad in the current dataset.

-

- merge -

-

Returns a new Dataset that is a concatenation of this dataset and the quads given as an argument.

-

some

@@ -273,6 +268,11 @@

Methods

Returns an N-Quads string representation of the dataset.

No normalization is done before, so the results for the same quads may vary based on the Dataset implementation.

+ +

+ union +

+

Returns a new Dataset that is a concatenation of this dataset and the quads given as an argument.