Using ^
for concatenation for each elements looks inefficient. Generating a call to String.concat ""
should be more efficient and quite comparable in term of complexity for the code generator.
1 Like
Using ^
for concatenation for each elements looks inefficient. Generating a call to String.concat ""
should be more efficient and quite comparable in term of complexity for the code generator.