| 21 | namespace csv { |
| 22 | |
| 23 | ParseOptions ParseOptions::Defaults() { return ParseOptions(); } |
| 24 | |
| 25 | Status ParseOptions::Validate() const { |
| 26 | if (ARROW_PREDICT_FALSE(delimiter == '\n' || delimiter == '\r')) { |
nothing calls this directly
no test coverage detected