We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf5334 commit e707496Copy full SHA for e707496
lkql/extensions/src/lkql-primitives.ads
@@ -205,7 +205,10 @@ package LKQL.Primitives is
205
type Builtin_Function_Profile is
206
array (Positive range <>) of Builtin_Param_Description;
207
208
- type Builtin_Function_Description (N : Positive) is record
+ Empty_Profile : constant Builtin_Function_Profile (1 .. 0) :=
209
+ (others => <>);
210
+
211
+ type Builtin_Function_Description (N : Natural) is record
212
Name : Unbounded_Text_Type;
213
Params : Builtin_Function_Profile (1 .. N);
214
Fn_Access : Native_Function_Access;
0 commit comments