+- any() ⇒
Clownface
+Removes current pointers from the context and return an "any pointer".
+The returned object can be used to find any nodes in the dataset
+
+- isList() ⇒
boolean
+Returns true if the current term is a rdf:List
+
+- list() ⇒
Iterable | null
+Creates an iterator which iterates and rdf:List of the current term
+
+- toArray() ⇒
Array.<Clownface>
+Returns an array of graph pointers where each one has a single _context
+
+- filter(callback) ⇒
Clownface
+Returns graph pointers which meet the condition specified in a callback function
+
+- forEach(callback) ⇒
Clownface
+Performs the specified action on every graph pointer
+
+- map(callback) ⇒
Array.<T>
+Calls a defined callback function on each graph pointer, and returns an array that contains the results.
+
+- node(values, [options]) ⇒
Clownface
+Creates graph pointer to one or more node(s)
+Depending on the value creates pointers to:
+
+- blank node context for null
values
+- literal for string
values and no options paramter
+- matching RDF/JS term
+- term created according to
options.type parameter
+
+
+- blankNode([values]) ⇒
Clownface
+Creates graph pointer to one or more blank nodes
+
+- literal(values, [languageOrDatatype]) ⇒
Clownface
+Creates graph pointer to one or more literal nodes
+
+- namedNode(values) ⇒
Clownface
+Creates graph pointer to one or more named nodes
+
+- in([predicates]) ⇒
Clownface
+Creates a graph pointer to nodes which are linked to the current pointer by predicates
+
+- out([predicates], [options]) ⇒
Clownface
+Creates a graph pointer to the result nodes after following a predicate, or after
+following any predicates in an array, starting from the subject(s) (current graph pointer) to the objects.
+
+- has(predicates, [objects]) ⇒
Clownface
+Creates a graph pointer to nodes which are subjects of predicates, optionally also with specific objects
+If the current context is empty, will check all potential subjects
+
+- addIn(predicates, subjects, [callback]) ⇒
Clownface
+Creates a new quad(s) in the dataset where the current context is the object
+
+- addOut(predicates, objects, [callback]) ⇒
Clownface
+Creates a new quad(s) in the dataset where the current context is the subject
+
+- addList(predicates, items) ⇒
Clownface
+Creates a new RDF list or lists containing the given items
+
+- deleteIn([predicates], [subjects]) ⇒
Clownface
+Deletes all quads where the current graph pointer contexts are the objects
+
+- deleteOut([predicates], [objects]) ⇒
Clownface
+Deletes all quads where the current graph pointer contexts are the subjects
+
+- deleteList(predicates) ⇒
Clownface
+Deletes entire RDF lists where the current graph pointer is the subject
+
+- filterTaggedLiterals(terms, [options]) ⇒
Array.<Term>
+
+
+
+## Typedefs
+
+