Results for “Std.Csv.Table”
7 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Csv.Table
A table read with its first row taken as the names of its columns.
- Std.Csv.column
&Std.Csv.Table -> Str -> Option[Array[Str]]Every value in one column, or nothing when the table has no such column.
- Std.Csv.indexOfColumn
&Std.Csv.Table -> Str -> IntWhere a column sits, or
-1when the table has no column of that name. - Std.Csv.parseTable
Str -> Result[Std.Csv.Table, Std.Csv.CsvError]A table whose first row names its columns.
- Std.Csv.record
&Std.Csv.Table -> Int -> Option[Map[Str, Str]]One row read by column name rather than by position.
- Std.Csv.records
&Std.Csv.Table -> Array[Map[Str, Str]]Every row read by column name.
- Std.Csv.renderTable
&Std.Csv.Table -> StrA table written with its column names as the first row.
