persolijn

an efficient router for busses
Log | Files | Refs

Container.java (133B)


      1 package osm.common;
      2 
      3 public interface Container<T, A> {
      4     void accumulate(A value);
      5 
      6     void fold(T other);
      7 
      8     void finish();
      9 }