What's the fastest way to concatenate strings?

So I recently made https://github.com/AriaFallah/ppx_str, and for the actual implementation, I’m breaking the string into a list and then using String.concat to join the final string together. What I’m wondering though is if there’s a faster way to join the strings together.

1 Like