https://issues.dlang.org/show_bug.cgi?id=18312

--- Comment #4 from anonymous4 <[email protected]> ---
Array concatenation still implies automatic memory management of some form. Not
sure something like that can fit in betterC. You can implement something like
stringConcat("`",s,"`") that will use memory management of your choice.
Or
char[] buffer=...;
"`".chain(s).chain("`").copy(buffer);

--

Reply via email to