Nodes

SerdNodes *serd_nodes_new(void)

Create a new node set.

void serd_nodes_free(SerdNodes *nodes)

Free nodes and all nodes that are stored in it.

Note that this invalidates any pointers previously returned from serd_nodes_intern() or serd_nodes_manage() calls on nodes.

const SerdNode *serd_nodes_intern(SerdNodes *nodes, const SerdNode *node)

Intern node.

Multiple calls with equivalent nodes will return the same pointer.

Returns

A node that is different than, but equivalent to, node.

const SerdNode *serd_nodes_manage(SerdNodes *nodes, SerdNode *node)

Manage node.

Like serd_nodes_intern, but takes ownership of node, freeing it and returning a previously interned/managed equivalent node if necessary.

Returns

A node that is equivalent to node.

void serd_nodes_deref(SerdNodes *nodes, const SerdNode *node)

Dereference node.

Decrements the reference count of node, and frees the internally stored equivalent node if this was the last reference. Does nothing if no node equivalent to node is stored in nodes.