get_row
Method of CSVDocument.
Overloads
| Name | Description |
|---|---|
get_row(const integer index, const CSVValueConverterFunc converter) -> List | Returns a row as a list of values converted by a converter function. |
get_row(const integer index) -> List | Returns a row as a list of strings. |
get_row(const string row_name, const CSVValueConverterFunc converter) -> List | Returns a row as a list of values converted by a converter function. |
get_row(const string row_name) -> List | Returns a row as a list of strings. |
get_row(const integer index, const CSVValueConverterFunc converter) -> List
Returns a row as a list of values converted by a converter function.
Parameters
- index: The index of the row to retrieve.
- converter: A function that converts each string value in the row.
get_row(const integer index) -> List
Returns a row as a list of strings.
Parameters
- index: The index of the row to retrieve.
get_row(const string row_name, const CSVValueConverterFunc converter) -> List
Returns a row as a list of values converted by a converter function.
Parameters
- row_name: The name of the row to retrieve.
- converter: A function that converts each string value in the row.
get_row(const string row_name) -> List
Returns a row as a list of strings.
Parameters
- row_name: The name of the row to retrieve.