Module With_hash

module Stable : sig ... end
type ('a, 'h) t = ( 'a, 'h ) Stable.Latest.t = {
data : 'a;
hash : 'h;
}
val to_yojson : 'a 'h. ( 'a -> Yojson.Safe.t ) -> ( 'h -> Yojson.Safe.t ) -> ( 'a, 'h ) t -> Yojson.Safe.t
val of_yojson : 'a 'h. ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'h Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> ( 'a, 'h ) t Ppx_deriving_yojson_runtime.error_or
val _ : ( Yojson.Safe.t -> 'a Ppx_deriving_yojson_runtime.error_or ) -> ( Yojson.Safe.t -> 'b Ppx_deriving_yojson_runtime.error_or ) -> Yojson.Safe.t -> ( 'a, 'b ) t Ppx_deriving_yojson_runtime.error_or
val t_fields_annots : string -> (string * string option) list
val t_toplevel_annots : unit -> (string * string option) list
val t_of_sexp : 'a 'h. ( Ppx_sexp_conv_lib.Sexp.t -> 'a ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'h ) -> Ppx_sexp_conv_lib.Sexp.t -> ( 'a, 'h ) t
val sexp_of_t : 'a 'h. ( 'a -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'h -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'a, 'h ) t -> Ppx_sexp_conv_lib.Sexp.t
val equal : 'a 'h. ( 'a -> 'a -> bool ) -> ( 'h -> 'h -> bool ) -> ( 'a, 'h ) t -> ( 'a, 'h ) t -> bool
val compare : 'a 'h. ( 'a -> 'a -> int ) -> ( 'h -> 'h -> int ) -> ( 'a, 'h ) t -> ( 'a, 'h ) t -> int
val hash_fold_t : 'a 'h. ( Ppx_hash_lib.Std.Hash.state -> 'a -> Ppx_hash_lib.Std.Hash.state ) -> ( Ppx_hash_lib.Std.Hash.state -> 'h -> Ppx_hash_lib.Std.Hash.state ) -> Ppx_hash_lib.Std.Hash.state -> ( 'a, 'h ) t -> Ppx_hash_lib.Std.Hash.state
val data : ( 'a, 'b ) t -> 'c
val hash : ( 'a, 'b ) t -> 'c
val map : ( 'a, 'b ) t -> f:( 'c -> 'd ) -> ( 'e, 'f ) t
val map_hash : ( 'a, 'b ) t -> f:( 'c -> 'd ) -> ( 'e, 'f ) t
val of_data : 'a -> hash_data:( 'b -> 'c ) -> ( 'd, 'e ) t