description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | |||||
---|---|---|---|---|---|---|---|---|---|---|
Learn more about: CDefaultCharTraits Class |
CDefaultCharTraits Class |
11/04/2016 |
|
|
f94a3934-597f-401d-8513-ed6924ae069a |
This class provides two static functions for converting characters between uppercase and lowercase.
template <typename T>
class CDefaultCharTraits
T
The type of data to be stored in the collection.
Name | Description |
---|---|
CDefaultCharTraits::CharToLower | (Static) Call this function to convert a character to uppercase. |
CDefaultCharTraits::CharToUpper | (Static) Call this function to convert a character to lowercase. |
This class provides functions that are utilized by the class CStringElementTraitsI.
Header: atlcoll.h
Call this function to convert a character to lowercase.
static wchar_t CharToLower(wchar_t x);
static char CharToLower(char x);
x
The character to convert to lowercase.
[!code-cppNVC_ATL_Utilities#132]
Call this function to convert a character to uppercase.
static wchar_t CharToUpper(wchar_t x);
static char CharToUpper(char x);
x
The character to convert to uppercase.