https://gitlab.com/tezos/tezos
Raw File
Tip revision: eed69129f1e52f8e8b54e6cc80ae403360b20a96 authored by Arvid Jakobsson on 06 June 2023, 15:00:01 UTC
try with cache
Tip revision: eed6912
digestif_eq.ml
module Make (D : sig
  val digest_size : int
end) =
struct
  let _ = D.digest_size

  let equal a b = Eqaf.equal a b

  let unsafe_compare a b = String.compare a b
end
back to top