1package org.ahmadsoft.ropes.impl;
2
3import java.util.Iterator;
4
5public interface RopeIterator extends Iterator<Character>{
6	/**
7	 * Returns the position of the last character returned.
8	 * @return
9	 */
10	int getPosition();
11}
12