Returns True if the set is empty, False otherwise
True if the set is empty, False otherwise
The number of mappings in the set
The number of mappings in the set
Bound a triple pattern using the set of mappings, i.e., substitute variables in the triple pattern
Triple pattern
An new, bounded triple pattern
Remove all mappings from the set
Creates a deep copy of the set of mappings
A deep copy of the set
Returns an empty set of mappings
An empty set of mappings
Test the equality between two sets of mappings
A set of mappings
True if the two sets are equal, False otherwise
Test if every mappings in the set pass a predicate function
Function to test for each mapping
True if every mappings in the set some the predicate function, False otheriwse
Creates a new bindings with additionnal mappings
Pairs [variable, value] to add to the set
A new Bindings with the additionnal mappings
Filter mappings from the set of mappings using a predicate function
Predicate function
A new set of mappings
Invoke a callback on each mapping
Callback to invoke
Get the RDF Term associated with a SPARQL variable
SPARQL variable
The RDF Term associated with the given SPARQL variable
Get metadata attached to the set using a key
Metadata key
The metadata associated with the given key
Test if mappings exists for a SPARQL variable
SPARQL variable
True if a mappings exists for this variable, False otherwise
Check if a metadata with a given key is attached to the set
Metadata key
Tur if the metadata exists, False otherwise
Test if the set of bindings is a subset of another set of mappings.
Superset of mappings
Ture if the set of bindings is a subset of another set of mappings, False otherwise
Creates a new set of mappings using a function to transform the current set
Transformation function (variable, value) => [string, string]
A new set of mappings
Same as map, but only transform values
Transformation function
A new set of mappings
Same as map, but only transform variables
Transformation function
A new set of mappings
Reduce the set of mappings to a value which is the accumulated result of running each element in collection thru a reducing function, where each successive invocation is supplied the return value of the previous.
Reducing function
Value used to start the accumulation
The accumulated value
Add a mapping SPARQL variable -> RDF Term to the set
SPARQL variable
RDF Term
Attach metadata to the set
Key associated to the value
Value to attach
Test if some mappings in the set pass a predicate function
Function to test for each mapping
True if some mappings in the set some the predicate function, False otheriwse
Serialize the set of mappings as a plain JS Object
The set of mappings as a plain JS Object
Serialize the set of mappings as a string
The set of mappings as a string
Get an iterator over the RDF terms in the set
An iterator over the RDF terms in the set
Get an iterator over the SPARQL variables in the set
An iterator over the SPARQL variables in the set
Generated using TypeDoc
A set of mappings from a variable to a RDF Term.
Thomas Minier