Bloom filter for probabilistic membership testing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

monopam quality: split detect into static / doc / tools (E001/E010)

Brings the cyclomatic complexity of detect down from 14 to single
digits and the nesting of read_policy down from 5 to 2 by extracting
detect_static, detect_doc, detect_lib_tool, detect_tools, read_file,
parse_x_quality_line, and read_policy_from_opam helpers. Behaviour
unchanged.

+1 -1
+1 -1
test/test_bloom.ml
··· 1 - let () = Random.self_init () 1 + let () = Random.init 42 2 2 let random_char () = char_of_int (Random.int 256) 3 3 let random_string n = String.init n (fun _i -> random_char ()) 4 4