std.uni
Functions which operate on unicode characters. For functions which operate on ASCII characters and ignore unicode characters, see std.ascii. References:ASCII Table, Wikipedia, The Unicode Consortium Trademarks:
Unicode(tm) is a trademark of Unicode, Inc. License:
Boost License 1.0. Authors:
Walter Bright, Jonathan M Davis, and Kenji Hara Source:
std/uni.d
- UTF line separator
- UTF paragraph separator
- Whether or not c is a unicode whitespace character. (general unicode category: Part of C0(tab, vertical tab, form feed, carriage return, and linefeed characters), Zs, Zl, Zp, and NEL(U+0085))
- Scheduled for deprecation in January 2012. Please use isLower instead. Return whether c is a unicode lowercase character.
- Return whether c is a unicode lowercase character.
- Scheduled for deprecation in January 2012. Please use isUpper instead. Return whether c is a unicode uppercase character.
- Return whether c is a unicode uppercase character.
- Scheduled for deprecation in January 2012. Please use toLower instead. If c is a unicode uppercase character, then its lowercase equivalent is returned. Otherwise c is returned.
- If c is a unicode uppercase character, then its lowercase equivalent is returned. Otherwise c is returned.
- Scheduled for deprecation in January 2012. Please use toUpper instead. If c is a unicode lowercase character, then its uppercase equivalent is returned. Otherwise c is returned.
- If c is a unicode lowercase character, then its uppercase equivalent is returned. Otherwise c is returned.
- Scheduled for deprecation in January 2012. Please use
isAlpha instead.
Returns whether c is a unicode alpha character (general unicode
category:
Lu, Ll, Lt, Lm, and Lo). Standards:
Unicode 5.0.0. - Returns whether c is a unicode alpha character (general unicode
category:
Lu, Ll, Lt, Lm, and Lo). Standards:
Unicode 5.0.0.