Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Shuttle_http.Meth
SourceRequest method is used to indicate the purpose of a HTTP request.
See https://datatracker.ietf.org/doc/html/rfc7231#section-4.3 for more details.
include Ppx_enumerate_lib.Enumerable.S with type t := t
include Ppx_quickcheck_runtime.Quickcheckable.S with type t := t
is_safe t
returns true if the semantics for a HTTP method are essentially read-only, and the client does not expect any state change on the server as a result of the request.
See https://datatracker.ietf.org/doc/html/rfc7231#section-4.2.1 for more details.
is_idempotent t
returns true if multiple requests with a HTTP method are intended to have the same effect on the server as a single such request. This function returns true for PUT, DELETE and all safe methods.
See https://datatracker.ietf.org/doc/html/rfc7231#section-4.2.2 for more details.
is_cacheable t
indicates that responses to requests with an HTTP method are allowed to be strored for future reuse. This function returns true for GET, HEAD and POST.
See https://datatracker.ietf.org/doc/html/rfc7231#section-4.2.3 for more details.
include Core.Comparable.S with type t := t
include Base.Comparable.S with type t := t
compare t1 t2
returns 0 if t1
is equal to t2
, a negative integer if t1
is less than t2
, and a positive integer if t1
is greater than t2
.
ascending
is identical to compare
. descending x y = ascending y x
. These are intended to be mnemonic when used like List.sort ~compare:ascending
and List.sort ~cmp:descending
, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max
returns t'
, the closest value to t
such that between t' ~low:min ~high:max
is true.
Raises if not (min <= max)
.
val comparator : (t, comparator_witness) Base__.Comparator.comparator
module Map :
Core.Map.S
with type Key.t = t
with type Key.comparator_witness = comparator_witness
module Set :
Core.Set.S
with type Elt.t = t
with type Elt.comparator_witness = comparator_witness