Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added DatasetCoreFactory #29

Merged
merged 3 commits into from
Jan 22, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions dataset-spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,25 @@ <h3>Methods</h3>
<p>Note: <a>Dataset</a>s represent Sets of <code>Quad</code>s, the order is arbitrary, so this method may result in differing results when called repeatedly.</p>
</section>

<section data-dfn-for="DatasetCoreFactory">
<h3><dfn>DatasetCoreFactory</dfn> interface</h3>

<pre class="idl">
interface DatasetCoreFactory {
DatasetCore dataset (optional sequence&lt;Quad&gt; quads);
};
</pre>

<p>
<code>DatasetCoreFactory</code> provides a <code>dataset</code> method to create instances of <code>DatasetCore</code>.
</p>

<p>
<dfn>dataset</dfn>
</p>
<p>Returns a new dataset and imports all quads, if given.</p>
</section>

<section data-dfn-for="Dataset">
<h3><dfn>Dataset</dfn> interface</h3>

Expand Down