Gets the current item this iterator is pointing to.
Iterator.current = function() { /*...*/ }
Iterator.current = function current() { return this.cachedIndex && this.cachedIndex.get(this.index); }
The current item.