Module Write.By_row
val output_lines : ?quote:char -> ?sep:char -> ?line_breaks:[ `Windows | `Unix ] -> Core_kernel.Out_channel.t -> row list -> unit
Prints a valid csv file to a given channel. The
line_breaks
arg can be used to override the default line ending of "\r\n" (DOS/Windows line endings). Example ~line_breaks:`Unix to get *nix line endings
val line_to_string : ?quote:char -> ?sep:char -> row -> string
Convert one CSV line to a string.