mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
renamed Futures into Future
This commit is contained in:
parent
fac35bf61c
commit
772e6e6844
5 changed files with 3 additions and 3 deletions
2
_tags
2
_tags
|
|
@ -1 +1 @@
|
||||||
<futures.*>: thread
|
<future.*>: thread
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ let compute_size x =
|
||||||
let print_val fmt x =
|
let print_val fmt x =
|
||||||
let o = Obj.repr x in
|
let o = Obj.repr x in
|
||||||
let graph' = G.map ~edges:(fun i -> [`Label (string_of_int i)])
|
let graph' = G.map ~edges:(fun i -> [`Label (string_of_int i)])
|
||||||
~vertices:(fun v -> [`Label (string_of_int v)]) graph in
|
~vertices:(fun v -> [`Label (string_of_int v); `Shape "box"]) graph in
|
||||||
G.Dot.pp ~name:"value" graph' fmt (Enum.singleton o)
|
G.Dot.pp ~name:"value" graph' fmt (Enum.singleton o)
|
||||||
|
|
||||||
let print_val_file filename x =
|
let print_val_file filename x =
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Futures
|
Future
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue