export default function Iterator(front, back, current) {
    this.front = front;
    this.back = back;
    this.current = current;
}