Refactor export() method to reduce allocations
Guitarbum722 opened this issue · 0 comments
Guitarbum722 commented
The export()
method does quite a few allocations. In one instance, using a single line of comma delimited data (7 columns), there are 17 allocations.
Explore the use of strings.Builder
- I think this could be done without affecting the API.