comparison dwtx/dwtxhelper/CharacterIterator.d @ 158:25f1f92fa3df

...
author Frank Benoit <benoit@tionex.de>
date Tue, 26 Aug 2008 02:46:34 +0200
parents
children
comparison
equal deleted inserted replaced
157:7f75eaa8103a 158:25f1f92fa3df
1 module dwtx.dwtxhelper.CharacterIterator;
2
3 interface CharacterIterator {
4 static const char DONE = '\u00FF';
5 Object clone();
6 char current();
7 char first();
8 int getBeginIndex();
9 int getEndIndex();
10 int getIndex();
11 char last();
12 char next();
13 char previous();
14 char setIndex(int position);
15 }
16
17