| 104 | } |
| 105 | |
| 106 | uint64_t GraphEncodeContext_GetKeyCount(const GraphEncodeContext *ctx) { |
| 107 | ASSERT(ctx); |
| 108 | // The `meta_keys` rax contains only the meta keys names. Add one for the graph context key. |
| 109 | return raxSize(ctx->meta_keys) + 1; |
| 110 | } |
| 111 | |
| 112 | void GraphEncodeContext_AddMetaKey(GraphEncodeContext *ctx, const char *key) { |
| 113 | ASSERT(ctx); |
no outgoing calls
no test coverage detected