pub type Builder(a) {
Builder(
col_sep: String,
row_sep: String,
skip_header: Bool,
f: fn(List(String)) -> Result(#(a, List(String)), String),
)
}
Constructors
-
Builder(
col_sep: String,
row_sep: String,
skip_header: Bool,
f: fn(List(String)) -> Result(#(a, List(String)), String),
)