diff options
Diffstat (limited to 'include/serd/world.h')
-rw-r--r-- | include/serd/world.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/serd/world.h b/include/serd/world.h index dc2b3b83..fb0930aa 100644 --- a/include/serd/world.h +++ b/include/serd/world.h @@ -7,6 +7,7 @@ #include "serd/attributes.h" #include "serd/memory.h" #include "serd/node.h" +#include "serd/nodes.h" #include "serd/status.h" #include "zix/attributes.h" @@ -68,6 +69,16 @@ SERD_API SerdStatus serd_world_set_limits(SerdWorld* ZIX_NONNULL world, SerdLimits limits); /** + 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. +*/ +SERD_PURE_API SerdNodes* ZIX_NONNULL +serd_world_nodes(SerdWorld* ZIX_NONNULL world); + +/** Return a unique blank node. The returned node is valid only until the next time serd_world_get_blank() |