std.ctype
Deprecated. It will be removed in August 2012. Please use std.ascii instead. Simple ASCII character classification functions. For Unicode classification, see std.uni. References:ASCII Table, Wikipedia License:
Boost License 1.0. Authors:
Walter Bright and Jonathan M Davis Source:
std/ctype.d
- Deprecated. It will be removed in August 2012. Please use std.ascii.isAlphaNum instead. Returns !=0 if c is a letter in the range (0..9, a..z, A..Z).
- Deprecated. It will be removed in August 2012. Please use std.ascii.isAlpha instead. Returns !=0 if c is an ascii upper or lower case letter.
- Deprecated. It will be removed in August 2012. Please use std.ctype.ascii.isControl instead. Returns !=0 if c is a control character.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isDigit instead. Returns !=0 if c is a digit.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isLower instead. Returns !=0 if c is lower case ascii letter.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isPunctuation instead. Returns !=0 if c is a punctuation character.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isWhite instead. Returns !=0 if c is a space, tab, vertical tab, form feed, carriage return, or linefeed.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isUpper instead. Returns !=0 if c is an upper case ascii character.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isHexDigit instead. Returns !=0 if c is a hex digit (0..9, a..f, A..F).
- Deprecated. It will be removed in August 2012. Please use std.ascii.isGraphical instead. Returns !=0 if c is a printing character except for the space character.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isPrintable instead. Returns !=0 if c is a printing character including the space character.
- Deprecated. It will be removed in August 2012. Please use std.ascii.isASCII instead. Returns !=0 if c is in the ascii character set, i.e. in the range 0..0x7F.
- Deprecated. It will be removed in August 2012. Please use std.ascii.toLower instead. If c is an upper case ascii character, return the lower case equivalent, otherwise return c.
- Deprecated. It will be removed in August 2012. Please use std.ascii.toUpper instead. If c is a lower case ascii character, return the upper case equivalent, otherwise return c.