• 0.2.0 dbb9c3cbfb

    0.2.0 Stable

    lobo released this 2026-05-22 18:59:23 +00:00 | 3 commits to trunk since this release

    This release changes the interface of backends.

    The new interface exposes of_repr and to_repr conversion functions from a backend's type to Facade's repr type.

    module type BACKEND = sig
      type ext
      type t
    
      val of_repr : ext Repr.t -> t
      val to_repr : t -> ext Repr.t
    end
    
    Downloads