Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 430 Bytes

csv_mapping_kind.md

File metadata and controls

20 lines (15 loc) · 430 Bytes

jsoncons::csv::csv_mapping_kind

#include <jsoncons_ext/csv/csv_options.hpp>

enum class csv_mapping_kind
{
    n_rows = 1, 
    n_objects, 
    m_columns
};
Value Definition
n_rows Map a CSV file to an array of arrays in a basic_json.
n_objects Map a CSV file to an array of objects in a basic_json.
m_columns Map a CSV file to an object with name/array-value pairs.