mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
parent
bcb90de435
commit
faeae964fc
1 changed files with 2 additions and 3 deletions
|
|
@ -129,13 +129,12 @@ module Poly = struct
|
||||||
let first = ref true in
|
let first = ref true in
|
||||||
Hashtbl.iter
|
Hashtbl.iter
|
||||||
(fun k v ->
|
(fun k v ->
|
||||||
if !first then first := false else Format.pp_print_string fmt ", ";
|
if !first then first := false else Format.fprintf fmt ",@ ";
|
||||||
pp_k fmt k;
|
pp_k fmt k;
|
||||||
Format.pp_print_string fmt " -> ";
|
Format.pp_print_string fmt " -> ";
|
||||||
pp_v fmt v;
|
pp_v fmt v;
|
||||||
Format.pp_print_cut fmt ()
|
|
||||||
) m;
|
) m;
|
||||||
Format.fprintf fmt "}@]"
|
Format.fprintf fmt "@,}@]"
|
||||||
end
|
end
|
||||||
|
|
||||||
include Poly
|
include Poly
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue