Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
make.ml
1 2 3 4 5 6 7 8 9 10 11 12 13
module Request (IO : S.IO) = struct include Cohttp.Request include ( Private.Make (IO) : module type of Private.Make (IO) with type t := t) end module Response (IO : S.IO) = struct include Cohttp.Response include ( Private.Make (IO) : module type of Private.Make (IO) with type t := t) end