5.9 World
-
typedef struct SerdWorldImpl SerdWorld
Global library state.
-
SerdWorld *serd_world_new(SerdAllocator *allocator)
Create a new Serd World.
It is safe to use multiple worlds in one process, though no objects can be shared between worlds.
-
void serd_world_free(SerdWorld *world)
Free
world
-
SerdNodes *serd_world_nodes(SerdWorld *world)
Return the nodes cache in
world
.The returned cache is owned by the world and contains various nodes used frequently by the implementation. For convenience, it may be used to store additional nodes which will be freed when the world is freed.
-
const SerdNode *serd_world_get_blank(SerdWorld *world)
Return a unique blank node.
The returned node is valid only until the next time
serd_world_get_blank()
is called or the world is destroyed.