Changeset 178:e186b01aa62e
- Timestamp:
- 03/06/08 20:36:32
(9 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- Children:
179:69c0e2fa46b9 181:52c185ec49e8
- branch:
- default
- Message:
renamed getFirstCodePoint
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r155 |
r178 |
|
| 1305 | 1305 | while (index < length_ && string[index] !is '&') index++; |
|---|
| 1306 | 1306 | if (++index >= length_) return '\0'; |
|---|
| 1307 | | if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index..$])); |
|---|
| | 1307 | if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index..$])); |
|---|
| 1308 | 1308 | index++; |
|---|
| 1309 | 1309 | } while (index < length_); |
|---|
| r169 |
r178 |
|
| 5626 | 5626 | while (index < length_ && string[index] !is '&') index++; |
|---|
| 5627 | 5627 | if (++index >= length_) return '\0'; |
|---|
| 5628 | | if (string[index] !is '&') return CharacterToLower(getFirstCodepoint( string[index .. $ ] )); |
|---|
| | 5628 | if (string[index] !is '&') return CharacterToLower(firstCodePoint( string[index .. $ ] )); |
|---|
| 5629 | 5629 | index++; |
|---|
| 5630 | 5630 | } while (index < length_); |
|---|