public interface Combinator<T, E> {
  T combine(T acc, E element);
}
