Class CharArrayIterator

java.lang.Object
org.codehaus.groovy.util.CharArrayIterator
All Implemented Interfaces:
Iterator<Character>

public class CharArrayIterator extends Object implements Iterator<Character>
Allows a char array to be used where an Iterator is expected.
Since:
3.0.8
  • Constructor Details

    • CharArrayIterator

      public CharArrayIterator(char[] array)
      Creates an iterator that traverses the supplied array in index order.
      Parameters:
      array - the backing array to iterate
  • Method Details