module Delim: sig
.. end
val adaptor : ?options:Delimited.options -> Adaptor.adaptor
Split lines according to the given
Delimited
options.
val fitting : ?options:Delimited.options -> Adaptor.fitting_adaptor
Fitting for delimited text files.
val reader : ?options:Delimited.options -> Reader.t
Read raw lines according to the given
Delimited
options.
val splitter : ?options:Delimited.options -> Adaptor.splitter
Split one line according to the given
Delimited
options.
Functorial Interface
module type SPEC = sig
.. end
module type S = sig
.. end
module Make: functor (
Spec
:
SPEC
) ->
S
Functor to create custom delim adaptors.
module type SPEC_NAMES = sig
.. end
module type S_NAMES = sig
.. end
module Make_names:
Functor to create custom delim adaptors with field names.