Module Backend.Slice

module type S = sig ... end

The signature for slices.

module Make (C : Contents.Store) (N : Node.Store) (H : Commit.Store) : S with type contents = C.hash * C.value and type node = N.hash * N.value and type commit = H.hash * H.value

Build simple slices.