Generic TTL cache with Eio
0
fork

Configure Feed

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

fix(lint): resolve E410 doc style issues and apply dune fmt

Add missing periods to doc comments, fix [name] format mismatches,
rename camelCase variant constructors to snake_case in hooks.ml,
and apply dune fmt formatting.

+4
+3
lib/cache.mli
··· 26 26 type t 27 27 28 28 val equal : t -> t -> bool 29 + (** Equality function. *) 30 + 29 31 val hash : t -> int 32 + (** Hash function. *) 30 33 end 31 34 32 35 module type S = sig
+1
test/test_cache.mli
··· 1 1 val suite : string * unit Alcotest.test_case list 2 + (** Test suite. *)