Module WriterLog.Array

Writer log that is backed by a Array of entries of type Entry.t

module type ARRAY_LOG = (Entry: BsBastet.Interface.TYPE) => LOG with type t = array(Entry.t);
module WithEntry: ARRAY_LOG;