Resolving conflicts with injectivity work

master
John Whitington 2020-07-27 13:49:42 +01:00
parent 7f922569c0
commit 33fdfffd5f
6 changed files with 8 additions and 7 deletions

View File

@ -154,7 +154,8 @@ Working version
(Thomas Refis, review by Gabriel Scherer)
- #9745: Manual: Standard Library labeled and unlabeled documentation unified
(John Whitington, review by Nicolás Ojeda Bär)
(John Whitington, review by Nicolás Ojeda Bär, David Allsopp
and Thomas Refis)
### Compiler user-interface and warnings:

View File

@ -25,7 +25,7 @@
(** {1 Generic interface} *)
type ('a, 'b) t
type (!'a, !'b) t
(** The type of hash tables from type ['a] to type ['b]. *)
val create : ?random: (* thwart tools/unlabel *) bool -> int -> ('a, 'b) t

View File

@ -67,7 +67,7 @@ module type S =
type key
(** The type of the map keys. *)
type (!+'a) t
and (!+'a) t
(** The type of maps from type [key] to type ['a]. *)
val empty: 'a t

View File

@ -36,7 +36,7 @@ module Hashtbl : sig
(** {1 Generic interface} *)
type ('a, 'b) t = ('a, 'b) Hashtbl.t
type (!'a, !'b) t
(** The type of hash tables from type ['a] to type ['b]. *)
val create : ?random: (* thwart tools/unlabel *) bool -> int -> ('a, 'b) t
@ -555,7 +555,7 @@ module type S =
type key
(** The type of the map keys. *)
type (!+'a) t
and (!+'a) t
(** The type of maps from type [key] to type ['a]. *)
val empty: 'a t

View File

@ -25,7 +25,7 @@
(** {1 Generic interface} *)
type ('a, 'b) t
type (!'a, !'b) t
(** The type of hash tables from type ['a] to type ['b]. *)
val create : ?random: (* thwart tools/unlabel *) bool -> int -> ('a, 'b) t

View File

@ -67,7 +67,7 @@ module type S =
type key
(** The type of the map keys. *)
type (!+'a) t
and (!+'a) t
(** The type of maps from type [key] to type ['a]. *)
val empty: 'a t