ma.vi.base.collections.CharIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.vikmad.base Show documentation
Show all versions of com.vikmad.base Show documentation
Base algos, data structures and utilities
The newest version!
package ma.vi.base.collections;
import java.util.Iterator;
/**
* @author Vikash Madhow ([email protected])
*/
public class CharIterable implements Iterable {
public CharIterable(CharSequence seq) {
this.seq = seq;
}
@Override
public Iterator iterator() {
return new CharIterator(seq);
}
private final CharSequence seq;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy