module Fixed:sig..end
This module provides some functions which are useful for manipulating files with fields of fixed width.
val chop_spaces : string -> stringchop_spaces s returns a string where the leading and trailing
spaces are removed.
val int : string -> intint s reads an int from a string where leading and
trailing spaces are allowed.
Equivalent to Pervasives.int_of_string (chop_spaces s).
val float : string -> floatfloat s reads an float from a string where leading and
trailing spaces are allowed.
Equivalent to Pervasives.float_of_string (chop_spaces s).