Move modules into dedicated files
[dups.git] / lib / metrics.mli
1 type t
2
3 val init
4 : unit -> t
5 val report
6 : t
7 -> wall_time_all:float
8 -> wall_time_group_by_size:float
9 -> wall_time_group_by_head:float
10 -> wall_time_group_by_digest:float
11 -> proc_time_all:float
12 -> proc_time_group_by_size:float
13 -> proc_time_group_by_head:float
14 -> proc_time_group_by_digest:float
15 -> unit
16
17 val file_considered
18 : t -> size:int -> unit
19 val file_ignored
20 : t -> size:int -> unit
21 val file_empty
22 : t -> unit
23 val file_sampled
24 : t -> unit
25 val chunk_read
26 : t -> size:int -> unit
27 val file_unique_size
28 : t -> size:int -> unit
29 val file_unique_sample
30 : t -> size:int -> unit
31 val file_hashed
32 : t -> size:int -> unit
33 val digest
34 : t -> unit
35 val redundant_data
36 : t -> size:int -> unit
This page took 0.05385 seconds and 4 git commands to generate.