|
Blender V5.0
|
#include <BLI_csv_parse.hh>
Public Attributes | |
| char | delimiter = ',' |
| char | quote = '"' |
| Span< char > | quote_escape_chars = Span<char>(StringRef("\"\\")) |
| int64_t | chunk_size_bytes = 64 * 1024 |
Definition at line 57 of file BLI_csv_parse.hh.
| int64_t blender::csv_parse::CsvParseOptions::chunk_size_bytes = 64 * 1024 |
Approximate number of bytes per chunk that the input is split into.
Definition at line 71 of file BLI_csv_parse.hh.
| char blender::csv_parse::CsvParseOptions::delimiter = ',' |
The character that separates fields within a row.
Definition at line 59 of file BLI_csv_parse.hh.
Referenced by blender::io::csv::import_csv_as_pointcloud().
| char blender::csv_parse::CsvParseOptions::quote = '"' |
The character that can be used to enclose fields which contain the delimiter or span multiple lines.
Definition at line 64 of file BLI_csv_parse.hh.
Characters that can be used to escape the quote character. By default, "" or " both represent an escaped quote.
Definition at line 69 of file BLI_csv_parse.hh.