/* A position in a container. This was introduced in section 5.2 of the textbook, i.e., we also saw it for Vectors and Lists. Some implementations may also support other methods, e.g., to change the element or find related elements in the data structure. */ public interface Position { public Object element(); }