Move modules into dedicated files
[dups.git] / lib / metrics.mli
CommitLineData
ddcbda00
SK
1type t
2
3val init
4 : unit -> t
5val 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
17val file_considered
18 : t -> size:int -> unit
19val file_ignored
20 : t -> size:int -> unit
21val file_empty
22 : t -> unit
23val file_sampled
24 : t -> unit
25val chunk_read
26 : t -> size:int -> unit
27val file_unique_size
28 : t -> size:int -> unit
29val file_unique_sample
30 : t -> size:int -> unit
31val file_hashed
32 : t -> size:int -> unit
33val digest
34 : t -> unit
35val redundant_data
36 : t -> size:int -> unit
This page took 0.01756 seconds and 4 git commands to generate.