module Convert:sig..end
Functions to convert QUERY_STRING parameters from strings to various other types.
These functions all catch errors and convert them to Restful.Types.User_exn.
val boolean : string -> boolConvert to a native bool. The only allowable string forms are "true" and "false".
val int : string -> intConvert to a native int.
val int64 : string -> Stdlib.Int64.tConvert to an Int64.t.
val float : string -> floatConvert to a float.