Files
releases/wasm/src/template-string.h
Johan Fylling 8e410b830a String interpolation (#8109)
Adding string interpolation support to the Rego language.

An interpolated string is composed of a template-string that can contain zero or more template-expressions that interpolates values into the string generated at eval-time.

Requires the `template_strings` capability feature and `internal.template_string` built-in function.

Implements: #4733
2025-12-16 11:47:04 +01:00

8 lines
134 B
C

#ifndef OPA_TEMPLATE_STRING_H
#define OPA_TEMPLATE_STRING_H
#include "value.h"
opa_value *opa_template_string(opa_value *a);
#endif