Differences From Artifact [a848ea510b]:
- File
src/OFConstantString.m
— part of check-in
[149874777c]
at
2023-08-23 16:01:21
on branch trunk
— Remove incomplete NFD/NFKD support
It has been moved to the "unicode-normalization" branch until it is
ready. (user: js, size: 12287) [annotate] [blame] [check-ins using] [more...]
To Artifact [58e75bd4ee]:
- File src/OFConstantString.m — part of check-in [36310f6263] at 2023-08-09 09:08:58 on branch trunk — Add OF_SINGLETON_METHODS (user: js, size: 12606) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
500 501 502 503 504 505 506 507 508 509 510 511 512 513 | 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 | + + + + + + + + + + + + + + |
}
- (OFData *)dataWithEncoding: (OFStringEncoding)encoding
{
[self finishInitialization];
return [self dataWithEncoding: encoding];
}
#ifdef OF_HAVE_UNICODE_TABLES
- (OFString *)decomposedStringWithCanonicalMapping
{
[self finishInitialization];
return self.decomposedStringWithCanonicalMapping;
}
- (OFString *)decomposedStringWithCompatibilityMapping
{
[self finishInitialization];
return self.decomposedStringWithCompatibilityMapping;
}
#endif
#ifdef OF_WINDOWS
- (OFString *)stringByExpandingWindowsEnvironmentStrings
{
[self finishInitialization];
return self.stringByExpandingWindowsEnvironmentStrings;
}
|
| ︙ |