Res.IdNumerical identifiers.
This module parses sequences of US-ASCII digits to non-negative int values. Leading zeros are not allowed, see Id.of_string for the full details.
The type for parse errors. See of_string.
val error_message : error -> stringerror_message e is an english error message for e.
val error_to_resp : error -> Webs.Http.Response.terror_to_resp e is a 400 bad request for e. The response's reason is determined by error_message.
val to_string : t -> stringto_string id are the US-ASCII digits for id. Raises Invalid_argument if id is negative.
of_string s is:
Ok id, if s is a sequence of US-ASCII digits and id its non-negative decimal interpretation.Error `Overflow in case s is only made of US-ASCII digits but there are too many of them to fit in a non-negative int.Error `Syntax in case s contains any non US-ASCII digits or if s has a leading 0 and is not "0".val decode : string -> (t, Webs.Http.Response.t) Stdlib.resultdecode s is Result.map_error error_to_resp (of_string s).