package fr.umlv.tpnote;
  
public interface Block<E> {
  void apply(E element);
}
