rdfjs / dataset-spec

RDF/JS: Dataset specification 1.0 – This specification provides a definition how to store multiple quads in a so-called dataset.
https://rdf.js.org/dataset-spec/
6 stars 5 forks source link

Allow DatasetCore as DatasetFactory argument #21

Open rubensworks opened 5 years ago

rubensworks commented 5 years ago

Currently, DatasetFactory's dataset method has the following signature:

Dataset dataset (optional (Dataset or sequence<Quad>) quads);

Would it make sense to change this to the following?:

Dataset dataset (optional (DatasetCore or sequence<Quad>) quads);