include H2.Headers
type t = H2.Headers.ttype name = stringtype value = string
val empty : tval of_list : (name * value) list -> tval of_rev_list : (name * value) list -> tval to_list : t -> (name * value) listval to_rev_list : t -> (name * value) listval add : t -> ?sensitive:bool -> name -> value -> tval add_unless_exists : t -> ?sensitive:bool -> name -> value -> tval add_list : t -> (name * value) list -> tval add_multi : t -> (name * value list) list -> tval remove : t -> name -> tval replace : t -> ?sensitive:bool -> name -> value -> tval mem : t -> name -> boolval get : t -> name -> value optionval get_exn : t -> name -> valueval get_multi : t -> name -> value listval iter : f:(name -> value -> unit) -> t -> unitval fold : f:(name -> value -> 'a -> 'a) -> init:'a -> t -> 'aval to_string : t -> stringval pp_hum : Stdlib.Format.formatter -> t -> unit
val host : t -> version:Versions.HTTP.t -> value optionval of_http1 : Httpaf.Headers.t -> tval to_http1 : t -> Httpaf.Headers.t