hcl/lib2/h3-strings.adb

9 lines
164 B
Ada
Raw Normal View History

2021-08-23 23:47:29 +00:00
package body H3.Strings is
2021-10-30 01:57:19 +00:00
procedure Append (Obj: in out Elastic_String; V: in Rune_Array) is
2021-08-23 23:47:29 +00:00
begin
2021-10-06 08:05:21 +00:00
P.Append (P.Elastic_Array(Obj), V);
end;
2021-08-23 23:47:29 +00:00
end H3.Strings;