package mycollection;

public interface List extends Collection {
    Object get(int index);

    Object set(int index, Object element);
}
