Actions
Bug #11310
closedCSV::Table#to_csv should use concat not +
    Bug #11310:
    CSV::Table#to_csv should use concat not +
  
Description
The current implementation of CSV::Table#to_a method uses Array#+ to which is really bad on performance. It seems like it should use Array#concat.
Relevant Github PR: https://github.com/ruby/ruby/pull/946
Actions