Skip to main content

get_row

Method of CSVDocument.

Overloads

NameDescription
get_row(const integer index, const CSVValueConverterFunc converter) -> ListReturns a row as a list of values converted by a converter function.
get_row(const integer index) -> ListReturns a row as a list of strings.
get_row(const string row_name, const CSVValueConverterFunc converter) -> ListReturns a row as a list of values converted by a converter function.
get_row(const string row_name) -> ListReturns 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.