module Fold:
It's against my policy to have this library depend on any 3rd-party libraries whose absence might prevent its compilation. I also want to avoid the complexities of conditional compilation.
So, the Kwcsv.Fold
module is functorized to push the dependency on
Uutf
into the app that needs this module.
To use this module to build a Unicode-aware Kwcsv.Fold.fold
, just say e.g.:
module F = Kwcsv.Fold (Kwcsv.Unicode (Uutf) (struct let encoding = None end)) module F = Kwcsv.Fold (Kwcsv.Unicode (Uutf) (AUTO)) module F = Kwcsv.Fold (Kwcsv.Unicode (Uutf) (struct let encoding = Some `UTF_8 end))and use
F.fold
.
For an old-fashioned ASCII-only fold
, use Kwcsv.Fold.fold
.
Parameters: |
|
val fold : ?eol:Kwcsv.eoltype ->
?q:string ->
?comma:string ->
?warn:(int -> unit) ->
('a -> int -> string list -> 'a) -> 'a -> Pervasives.in_channel -> 'a
fold ?eol ?q ?comma ?warn func init chan
: fold func
over records in CSV file open on chan
.CSV
when invalid character found after quoted quoteeol
: end-of-line type (default: AUTO)q
: quote character (default: '"'
)comma
: field-separator character (default: ','
)warn
: function to handle "EOF in quoted string" warning (default: none)func
: function to foldinit
: initial accumulator valuechan
: opened input channel