Compounds | |||
![]() | ![]() | class | UnicodeString |
![]() | ![]() | class | UCharReference |
Defines | |||
![]() | ![]() | #define | UNICODE_STRING (cs, length) |
![]() | ![]() | Unicode String literals in C++. More... | |
Functions | |||
![]() | ![]() | void | uprv_arrayCopy (const UnicodeString *src, UnicodeString *dst, int32_t count) |
![]() | ![]() | void | uprv_arrayCopy (const UnicodeString *src, int32_t srcStart, UnicodeString *dst, int32_t dstStart, int32_t count) |
#define UNICODE_STRING (cs, length) |
Unicode String literals in C++.
Dependent on the platform properties, different UnicodeString constructors should be used to create a UnicodeString object from a string literal. The macros are defined for maximum performance. They work only for strings that contain "invariant characters", i.e., only latin letters, digits, and some punctuation. See utypes.h for details.
The string parameter must be a C string literal. The length of the string, not including the terminating NUL
, must be specified as a constant. The U_STRING_DECL macro should be invoked exactly once for one such string variable before it is used.
void uprv_arrayCopy (const UnicodeString * src, UnicodeString * dst, int32_t count) [inline]
|
void uprv_arrayCopy (const UnicodeString * src, int32_t srcStart, UnicodeString * dst, int32_t dstStart, int32_t count) [inline]
|