package resto
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Resto
module Utils : sig ... endval string_of_meth : [< meth ] -> stringval meth_of_string : string -> [> meth ] optioneq is an equality witness type. It is returned by some non-trivial equality-testing functions in the rest of this module. In general, it is intended to be used as follows:
match are_equal foo bar with | None -> (* values are not equal *) .. | Some Eq -> (* values are equal *) ..
module Arg : sig ... endTyped path argument.
module Path : sig ... endParametrized path to services.
module Description : sig ... endService directory description
module Query : sig ... endmodule type ENCODING = sig ... endAn ENCODING is a generic interface for modules that provide conversion from values to a different representation and back. This is used to abstract resto over specific representations of values.
module MakeService (Encoding : ENCODING) : sig ... end