Vince's CSV Parser
Loading...
Searching...
No Matches
csv_writer_extensions.hpp
Go to the documentation of this file.
5#pragma once
6#include "csv_row.hpp"
7#include "csv_writer.hpp"
8#include "data_frame.hpp"
9
10#ifdef CSV_HAS_CXX20
11namespace csv {
12 template<class OutputStream, char Delim, char Quote, bool Flush>
15 return writer << row.to_sv_range();
16 }
17
19 template<class OutputStream, char Delim, char Quote, bool Flush, typename KeyType>
22 return writer << row.to_sv_range();
23 }
24}
25#endif
Data structure for representing CSV rows.
Definition csv_row.hpp:264
Proxy class that wraps a CSVRow and intercepts field access to check for edits.
Class for writing delimiter separated values files.
Defines the data type used for storing information about a CSV row.
A standalone header file for writing delimiter-separated files.
The all encompassing namespace.