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
This store adheres to the `DatasetCore` interface which exposes the following properties
306
+
307
+
Attributes:
308
+
-`size` — A non-negative integer that specifies the number of quads in the set.
309
+
310
+
Methods:
311
+
-`add` — Adds the specified quad to the dataset. Existing quads, as defined in `Quad.equals`, will be ignored.
312
+
-`delete` — Removes the specified quad from the dataset.
313
+
-`has` — Determines whether a dataset includes a certain quad.
314
+
-`match` — Returns a new dataset that is comprised of all quads in the current instance matching the given arguments.
315
+
-`[Symbol.iterator]` — Implements the iterator protocol to allow iteration over all `quads` in the dataset as in the example above.
316
+
304
317
### Addition and deletion of quads
305
-
The store provides the following manipulation methods
318
+
The store provides the following manipulation methods in addition to implementing the standard [`DatasetCore` Interface](https://rdf.js.org/dataset-spec/#datasetcore-interface)
0 commit comments