appender doesn't support string[] so in such case:
string[] output; for(...) { if(...) { output ~= str; } }
Looking for avoid as many immediate allocations as possible, what should I use?
Marc via Digitalmars-d-learn Mon, 12 Feb 2018 18:00:50 -0800
appender doesn't support string[] so in such case:
string[] output; for(...) { if(...) { output ~= str; } }
Looking for avoid as many immediate allocations as possible, what should I use?