Module WriterLog.List

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

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