package sort;

public interface Sorter<T> {
   void sort(T[] x);
}
