Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <e32std.h>

Class TCharF

class TCharF : public TChar;

Description

Folds a specified character and provides functions to fold additional characters after construction of the object.

Folding converts the character to a form which can be used in tolerant comparisons without control over the operations performed. Tolerant comparisons are those which ignore character differences like case and accents.

Note that folding is locale-independent behaviour. It is also important to note that there can be no guarantee that folding is in any way culturally appropriate, and should not be used for matching characters in natural language.

Derivation

Members

Defined in TCharF:

Inherited from TChar:

See also:


Construction and destruction


TCharF(TUint)

inline TCharF(TUint aChar);

Description

Constructs this 'fold character' object and initialises it with the specified value.

Parameters

TUint aChar

The initialisation value.


TCharF(const TChar &)

inline TCharF(const TChar &aChar);

Description

Constructs this 'fold character' object and initialises it with the value of the TChar object aChar.

Parameters

const TChar &aChar

The character object to use as the initialisation value.

[Top]


Member functions


operator=(TUint)

inline TCharF& operator=(TUint aChar);

Description

Assigns an unsigned integer value to the 'fold character' object.

Parameters

TUint aChar

The value to assign.

Return value

TCharF &

A reference to this 'fold character' object.


operator=(const TChar &)

inline TCharF& operator=(const TChar &aChar);

Description

Assigns the specified character object to this 'fold character' object.

Parameters

const TChar &aChar

The character object to assign.

Return value

TCharF &

A reference to this 'fold character' object.