Supply Chain Integrity, Transparency, and Trust (IETF SCITT)
0
fork

Configure Feed

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

irmin: rename Heap.find_ref to Heap.ref

ref is not an OCaml keyword (it's a Stdlib function), so it's a
valid name in a different module. Drops the redundant find_ prefix
per merlint E331.

+1 -1
+1 -1
test/atp/test_scitt_atp.ml
··· 53 53 let put (bs : t) h data = bs#put h data 54 54 let mem (bs : t) h = bs#has h 55 55 let batch bs l = List.iter (fun (h, d) -> bs#put h d) l 56 - let find_ref _ _ = None 56 + let ref _ _ = None 57 57 let set_ref _ _ _ = () 58 58 let del_ref _ _ = () 59 59 let list_refs _ = []