# Concern - oj (A fast JSON parser and Object marshaller as a Ruby gem.) - Demand (few effective use cases?) - Don’t improve performance so much for cost? => Hmm, let's do it.
# CSV 3. There maybe an optional header line appearing as the first line of the file. This header should contain the same number of fields as the records. field_name,field_name,field_name CRLF aaa,bbb,ccc CRLF zzz,yyy,xxx CRLF
# CSV 4. … Each line should contain the same number of fields. Spaces are considered part of a field and should not be ignored. The last field in the record must not be followed by a comma. aaa,bbb,ccc
# CSV 5. Each field may or may not be enclosed in double quotes. If fields are not enclosed with double quotes, then double quotes may not appear inside the fields. "aaa","bbb","ccc" CRLF zzz,yyy,xxx
# CSV 7. If double-quotes are used to enclose fields, then a double-quote appearing inside a field must be escaped by preceding it with another double quote. “aaa","b""bb","ccc"
# ruby/csv - 2007-12-24 23:41 jeg2 o * lib/csv.rb, test/csv/ test_csv.rb: Removed in preparation for code ͕શ෦ফ͑ΔɻFasterCSV ΛೖΕΔ४උͷ༷ɻ - 2007-12-25 02:46 jeg2 o * lib/csv.rb: Import the FasterCSV source as the new CSV class. FasterCSV ͕ೖΔɻ
# ruby/csv 2018 ࠷ۙ ਢ౻͞Μ͕ϝϯςφʹͳͬͨ͜ͱɻ ίʔυͷཧ͕ਐΜͰ͍ΔΑ͏ʹݟ͑Δ 2018-03-06 09:34 Kenta Murata oᴷᵏ Describe our attitude to RuboCop ### NOTE: About RuboCop We don't use RuboCop because we can manage our coding style by ourselves. We want to accept small fluc tuations in our coding style because we use Ruby. Please do not submit issues and PRs that aim to introduce RuboCop in this repository.
## How did I start - If I have a very fast parser, will I win? - Is there room for improvement anymore? - Will it become practical if fastest-csv is full of functions?
## How did I start - If I have a very fast parser, will I win? - Is there room for improvement anymore? - Will it become practical if fastest-csv is full of functions?